mirror of
https://github.com/github/semantic.git
synced 2024-12-20 13:21:59 +03:00
19 lines
150 B
Ruby
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()
|