rubyhs/ruby/test.rb

28 lines
193 B
Ruby

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