# New Ticket Created by Moritz Lenz # Please include the string: [perl #121647] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=121647 >
rakudo-jvm fails the second test in this block: { my $a = 42; try { is((let $a = 23; $a), 23, "let() changed the variable in a try block"); die 57; }; is $a, 42, "let() restored the variable, the block was exited using an exception"; } (taken from S04-blocks-and-statements/let.t) the other backends pass this test.