mirror of
https://github.com/github/semantic.git
synced 2024-12-20 21:31:48 +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()
|