# New Ticket Created by Ilya Belikin # Please include the string: [perl #60404] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60404 >
Hi there,
sub foo (@a) { 1.say for @a }
foo((1,2,3,4)); # only one 1
foo([1,2,3,4]); # only one 1
foo( my @a = 1,2,3 ); # only one 1
This one really pesky bug :(
Ilya
