# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #92652] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=92652 >
<breatharian> Oh wow, rakudo gives "Cannot resume dead coroutine." for [Z+] @a, @b, @c <breatharian> and exits <tadzik> breatharian: I guess that's Rakudorian for "not yet implemented, sorry" <moritz> rakudo: say [Z+] (1, 2), (3, 4), (5, 6) <p6eval> rakudo 4a6d21: ( no output ) <masak> rakudo: my @a = 1, 2, 3; say [Z+] @a, @a, @a <p6eval> rakudo 4a6d21: ( no output ) * masak tries locally <tadzik> same thing locally <masak> tadzik: with which one-liner? * masak can't reproduce it locally <tadzik> masak: my @a = 1, 2, 3; my @b = 4, 5, 6; my @c = 7, 8, 9;[Z+] @a, @b, @c * masak submits rakudobug <masak> tadzik: strangely, I don't get it over here. <tadzik> oh? <masak> tadzik: could you please nopaste your local dead-coroutine error? along with your local rakudo version? $ perl6 > [Z+] @a, @b, @c Symbol '@a' not predeclared in <anonymous> > my @a = 1, 2, 3; my @b = 4, 5, 6; my @c = 7, 8, 9;[Z+] @a, @b, @c ===SORRY!=== Cannot resume dead coroutine. $ perl6 --version This is Rakudo Perl 6, version 2011.05-6-gc56f740 built on parrot 3.4.0 RELEASE_3_4_0-27-gfb89b91 Copyright 2008-2011, The Perl Foundation <masak> tadzik: hm, is that a compile-time error? what happens if you 'say "alive"' at the *beginning* of the program? <tadzik> erm, nuts <tadzik> > say 'alive'; my @a = 1, 2, 3; my @b = 4, 5, 6; my @c = 7, 8, 9;[Z+] @a, @b, @c <tadzik> alive <tadzik> no other errors <masak> hah! :) <masak> this all goes into the ticket. tadzik++ <tadzik> weird