# New Ticket Created by Richard Hainsworth # Please include the string: [perl #74054] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=74054 >
using rakudo updated on 4.4.10
perl6
> sub aaa (%h is rw) { %h = <a b c> Z 1,2,3 }; my %h = <x y> Z 5,4;
aaa(%h); %h.perl.say
{"c" => 3, "a" => 1, "b" => 2}
It seems to me the output should be
{"x" => 5, "y" => 4 }
