# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74336] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=74336 >
<masak> rakudo: my @a = 1,2,3; my (@c) = @a; say @c.perl <p6eval> rakudo cb4521: OUTPUT«[[1, 2, 3]]» <masak> alpha: my @a = 1,2,3; my (@c) = @a; say @c.perl <p6eval> alpha 30e0ed: OUTPUT«[1, 2, 3]» <masak> rakudo: my @a = 1,2,3; my @c = @a; say @c.perl <p6eval> rakudo cb4521: OUTPUT«[1, 2, 3]» * masak submits rakudobug * masak wonders if this is related to the issue with double arrays in attributes