1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 23:42:31 +03:00

Add another layer to Ruby module fixture

This commit is contained in:
Timothy Clem 2018-03-26 13:00:49 -07:00
parent 3eece19234
commit e78740ef88

View File

@ -8,6 +8,11 @@ module Bar
def self.hi
"<hello>"
end
module Baz
def self.baz
"<baz>"
end
end
end
Bar.hi()