# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #95850] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=95850 >
<flussence> rakudo: my @a = a => 1, b => 2; say @a.perl; say @a.hash.perl; say @a.perl; <p6eval> rakudo 922500: OUTPUT«["a" => 1, "b" => 2]{"a" => 1, "b" => 2}[]» <flussence> ^ <flussence> @a.hash is eating @a... <pmichaud> nom: my @a = a => 1, b => 2; say @a.perl; say @a.hash.perl; say @a.perl; <p6eval> nom: OUTPUT«Array.new("a" => 1, "b" => 2)("a" => 1, "b" => 2).hashArray.new()» * masak submits the @a.hash eats @a bug above