1
1
mirror of https://github.com/github/semantic.git synced 2024-12-20 13:21:59 +03:00
semantic/test/fixtures/ruby/analysis/classes.rb
2018-03-26 15:30:11 -07:00

19 lines
150 B
Ruby

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()