1
1
mirror of https://github.com/github/semantic.git synced 2024-12-20 21:31:48 +03:00
semantic/test/fixtures/ruby/analysis/classes.rb

19 lines
150 B
Ruby
Raw Normal View History

2018-03-27 01:30:11 +03:00
class A
def self.hi
"<hi>"
end
end
class A
def self.hi
"<hello>"
end
class B
def self.hi
"<B>"
end
end
end
A.hi()