module M def f end def g f(2) h(2, a: 'a') h(2, a: :a) end end # class C # end module K end f(2) h(2, a: 'a') h(2, a: :a)