Bruce, FYI
False bug. Moritz has already rejected it and I agreed.
I am chasing an error generated by new Rakudo in code that worked well
in alpha. I thought this was it, it aint.
Havent time at present to return to the chase.
Sorry.
Richard
Bruce Keeler via RT wrote:
On 4/4/2010 7:13 AM, Richard Hainsworth (via RT) wrote:
# 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 }
Why?