[perl #78284] [BUG] Neither .item nor $(...) make a List stop behaving as a list in Rakudo

2010-10-08 Thread Patrick R. Michaud via RT
Now fixed in 5ce8fcf: > sub f { 1, 2, 4 }; .say for f.item 1 2 4 > sub f { 1, 2, 4 }; .say for $(f) 1 2 4 However, the fix exposes a problem with either .trans or trans.t, so this ticket isn't quite closable yet. (And we need a spectest for it.) Pm

[perl #78284] [BUG] Neither .item nor $(...) make a List stop behaving as a list in Rakudo

2010-10-08 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #78284] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=78284 > rakudo: sub f { 1, 2, 4}; .say for f rakudo 970243: OUTPUT«1␤2␤4␤» rakudo: sub f { 1,