# New Ticket Created by Richard Hainsworth # Please include the string: [perl #74518] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=74518 >
See #perl6 20 April The problem below appears to be with .perl, not with assigning from a subsequence. finanalyst: alpha: my @a = 1,2,3,4; my %h; %...@a[0]} = @a[1 ..^ +...@a]; %h.perl.say p6eval: alpha 30e0ed: OUTPUT«{"1" => [2, 3, 4]}» finanalyst: rakudo: my @a = 1,2,3,4; my %h; %...@a[0]} = @a[1 ..^ +...@a]; %h.perl.say p6eval: rakudo b05155: OUTPUT«{"1" => Seq.new()}» later: rakudo: my @a = 1,2,3,4; my %h; %...@a[0]} = @a[1 ..^ +...@a]; %h.say p6eval: rakudo b05155: OUTPUT«1 2 3 4»