Actions
Bug #7665
closedkeyrest argument overwrites the last element of rest argument
Bug #7665:
keyrest argument overwrites the last element of rest argument
Description
=begin
Since r38657, this code
def foo(*args, **opt)
p args, opt
end
foo("foo", "bar", zzz: 42)
shows
["foo", {:zzz=>42}]
{:zzz=>42}
but the first line should be (({["foo", "bar"]})).
=end
Actions