[perl #69316] [BUG] Null PMC access when trying to initialize a nested class from the constructor of the outer class in Rakudo

2011-10-10 Thread Will Coleda via RT
On Tue Jul 27 19:57:29 2010, coke wrote: > On Wed Sep 23 04:39:28 2009, masak wrote: > > rakudo: class Forest { class Frog { method speak { say > "ribbit > > ribbit" } }; has Frog $.frog; method new() { my Frog $frog .= new; > > self.bless(*, :$frog) } }; Forest.new > > rakudo 0eaf62: OUTPUT«Null

[perl #69316] [BUG] Null PMC access when trying to initialize a nested class from the constructor of the outer class in Rakudo

2010-07-27 Thread Will Coleda via RT
On Wed Sep 23 04:39:28 2009, masak wrote: > rakudo: class Forest { class Frog { method speak { say "ribbit > ribbit" } }; has Frog $.frog; method new() { my Frog $frog .= new; > self.bless(*, :$frog) } }; Forest.new > rakudo 0eaf62: OUTPUT«Null PMC access in type()␤in method > Forest::new [...] >

[perl #69316] [BUG] Null PMC access when trying to initialize a nested class from the constructor of the outer class in Rakudo

2009-09-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #69316] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=69316 > rakudo: class Forest { class Frog { method speak { say "ribbit ribbit" } }; has Frog $.