# New Ticket Created by  "Carl Mäsak" 
# Please include the string:  [perl #63642]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63642 >


Abusing git commit a2f506 of Rakudo along with r37108 of Parrot, I get this:

$ perl6 -e 'my %h1 = a => "b"; my %h2 = c => "d"; %h1 ,= %h2; say %h1'
a       b
$

In my view, C<%h1 ,= %h2;> ought to have the meaning of C<%h1 = %h1,
%h2;>, which does give the result I expect:

$ perl6 -e 'my %h1 = a => "b"; my %h2 = c => "d"; %h1 = %h1, %h2; say %h1'
a       bc      d
$

Reply via email to