1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 18:23:44 +03:00
semantic/test/fixtures/ruby/analysis/modules.rb

19 lines
164 B
Ruby
Raw Normal View History

2018-03-26 22:50:06 +03:00
module Bar
def self.hi
"<hi>"
end
end
module Bar
def self.hi
"<hello>"
end
module Baz
def self.baz
"<baz>"
end
end
2018-03-26 22:50:06 +03:00
end
Bar.hi()