# New Ticket Created by Christian Bartolomaeus
# Please include the string: [perl #127967]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/Ticket/Display.html?id=127967 >
The following code (from S06-advanced/wrap.t, test skipped for rakudo-j) dies
on rakudo-jvm:
$ perl6-j -e 'my @t = gather { sub triangle { take "=" x 3; }; for reverse ^3
-> $n { &triangle.wrap({ take "=" x $n; callsame; take "=" x $n; }); };
triangle(); };'
control operator crossed continuation barrier
in any call_with_capture at gen/jvm/Metamodel.nqp line 3843
in block at -e line 1
in block <unit> at -e line 1
I did a bisect and found that commit
https://github.com/rakudo/rakudo/commit/f3fe819621 broke it.