# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73384] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=73384 >
<masak> rakudo: my $a = 10; $a &&= 11; say $a <p6eval> rakudo 54be6d: OUTPUT«Null PMC access in invoke() [...] * masak submits rakudobug <masak> rakudo: my $a = 10; $a = $a && 11; say $a <p6eval> rakudo 54be6d: OUTPUT«11» <masak> so the error has to do with the &&= operator. <masak> rakudo: my $a = 0; $a ||= 11; say $a <p6eval> rakudo 54be6d: OUTPUT«Null PMC access in invoke() [...]
