[perl #74412] [BUG] Null PMC access when accessing a variable in a class package through its long name in Rakudo

2011-10-08 Thread Will Coleda via RT
On Fri Apr 16 01:26:52 2010, masak wrote: > alpha: class A { my $b; method c { $A::b = 5; say $A::b } }; > A.new.c > alpha 30e0ed: OUTPUT«5␤» > rakudo: class A { my $b; method c { $A::b = 5; say $A::b } }; > A.new.c > rakudo 78faa0: OUTPUT«Null PMC access in getprop() [...] > * masak submits ra

[perl #74412] [BUG] Null PMC access when accessing a variable in a class package through its long name in Rakudo

2010-04-16 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74412] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74412 > alpha: class A { my $b; method c { $A::b = 5; say $A::b } }; A.new.c alpha 30e0ed: OUT