[perl #86880] [BUG] Null PMC access when instantiating a class doing a role with a private 'my'-scoped attribute in Rakudo

2013-11-13 Thread Will Coleda via RT
On Sun May 27 20:41:04 2012, coke wrote: > On Wed Mar 23 15:17:03 2011, masak wrote: > > rakudo: role Breakable { my $!broken = Bool::False; }; > > class > > Frobnitz does Breakable {}; say Frobnitz.new() > > rakudo d5ccf9: OUTPUT«===SORRY!===␤Null PMC access in > > get_attr_str()␤» > > * masak s

[perl #86880] [BUG] Null PMC access when instantiating a class doing a role with a private 'my'-scoped attribute in Rakudo

2012-05-27 Thread Will Coleda via RT
On Wed Mar 23 15:17:03 2011, masak wrote: > rakudo: role Breakable { my $!broken = Bool::False; }; class > Frobnitz does Breakable {}; say Frobnitz.new() > rakudo d5ccf9: OUTPUT«===SORRY!===␤Null PMC access in > get_attr_str()␤» > * masak submits rakudobug > masak++ > rakudo: class Frobnitz {};

[perl #86880] [BUG] Null PMC access when instantiating a class doing a role with a private 'my'-scoped attribute in Rakudo

2011-03-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #86880] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=86880 > rakudo: role Breakable { my $!broken = Bool::False; }; class Frobnitz does Breakable {}