# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #68110] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=68110 >
<masak> rakudo: my @a = 1,2,3; for @a -> $a, $b = 5 { say $a, "\t", $b } <p6eval> rakudo e02bc0: OUTPUT«1 2StopIteration [...] <masak> that can't be right. <jnthn> Rakudo bug. * masak submits <masak> rakudo: my @a = 1,2,3,4; for @a -> $a, $b = 5 { say $a, "\t", $b } <p6eval> rakudo e02bc0: OUTPUT«1 23 4» <masak> that's part of the bug.