Now, the tests in S02-types/lazy-lists.t pass on rakudo.jvm as well.
I'm closing this ticket as 'resolved'.
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
# 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