Created
May 8, 2020 14:07
-
-
Save oieioi/01e2372bbc60d4c8b40982f14863d08f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def meth(arg, **kwargs) | |
puts "kwargs: #{kwargs}" | |
end | |
puts '---- no warning ----' | |
meth(1, hoge: 1) #=> no warning | |
meth(1, **{ hoge: 1 }) #=> no warning | |
send(:meth, *[1, **{hoge: 1}]) # => NO warning | |
puts '---- warning ----' | |
meth(1, { hoge: 1 }) #=> warning | |
meth(*[1, { hoge: 1 }]) #=> warning | |
meth(*[1, **{ hoge: 1 }]) #=> warning | |
send(:meth, 1, {hoge: 1}) # => warning | |
send(:meth, *[1, {hoge: 1}]) # => warning |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment