1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00
semantic/test/fixtures/ruby/analysis/modules.rb
2018-03-26 13:00:49 -07:00

19 lines
164 B
Ruby

module Bar
def self.hi
"<hi>"
end
end
module Bar
def self.hi
"<hello>"
end
module Baz
def self.baz
"<baz>"
end
end
end
Bar.hi()