rubyhs/ruby/test.rb
2019-10-11 16:55:48 +02:00

35 lines
257 B
Ruby

module M
def f
end
def g
f(2)
h(2, a: 'a')
h(2, a: :a)
end
module N
def f
M::foo
h
end
module A::B
def k
end
end
def g
end
end
end
module K
f
end
f(2)
h(2, a: 'a')
h(2, a: :a)