# New Ticket Created by Moritz Lenz # Please include the string: [perl #58276] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=58276 >
Rakudo r30452: > sub a(@b) { for @b { .say } }; my @x = (1, 2, 3); a(@x) 1 2 3 That should be 1 2 3 Curiously the number of items in @b is reported correctly: > sub a(@b) { say @b.elems }; my @x = (1, 2, 3); a(@x) 3 -- Moritz Lenz http://moritz.faui2k3.org/ | http://perl-6.de/