# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #75768] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=75768 >
<colomon> rakudo: say (1...10)[2...4] <p6eval> rakudo cfbeb5: OUTPUT«Null PMC access in getprop() [...] * masak submits rakudobug <colomon> ooooo, it's a closure bug, I'll bet. <colomon> rakudo: my @a = 1...10; say @a[0...4] <p6eval> rakudo cfbeb5: OUTPUT«12345» <colomon> closure bug, nothing to see here. <masak> the closure bug usually doesn't result in a Null PMC access. <masak> rakudo: my @a = 1...10; say @a[2...4] <p6eval> rakudo cfbeb5: OUTPUT«345» <masak> but yes, seems like it's parallel gather blocks interfering that's the underlying cause. <colomon> I will be unspeakably happy when that bug is eliminated.