[perl #121994] Array receives an empty itemized list

2015-06-20 Thread Christian Bartolomaeus via RT
Now, the tests in S02-types/lazy-lists.t pass on rakudo.jvm as well. I'm closing this ticket as 'resolved'.

[perl #121994] Array receives an empty itemized list

2014-10-20 Thread Christian Bartolomaeus via RT
This also works now on Moar: $ perl6-m -e 'my @a; @a.push: $("one,two,three".split(",")); say @a;' one two three There was a test added to S02-types/lazy-lists.t with the following commit: https://github.com/perl6/roast/commit/6538a38cfe5492fc65412440e56a46c3163fb6f9 I just fudged the test for

[perl #121994] Array receives an empty itemized list

2014-05-30 Thread via RT
# New Ticket Created by B. N. # Please include the string: [perl #121994] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=121994 > Bug on rakudo-m and rakudo-j: > p6: my @a; @a.push: $("one,two,three".split(',')); say @a; >Ca