# New Ticket Created by  Alexander Hartmaier 
# Please include the string:  [perl #114836]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=114836 >


As just discussed in #perl6 code that I wrote with Rakudo 2011.01 stopped
working under 2012.08.
We've tracked it down to this minimal test case:

#!/usr/bin/env perl6

use v6;

my $play_again;
repeat {
    my $input = 'n';
    $play_again = $input eq 'j';
} while $play_again;

The error thrown is:
Cannot assign into a PMCNULL container
  in block  at ./rakudo-2012.08-bug.pl6:8

Cheers, Alex (abraxxa)

Reply via email to