On Wed Sep 23 04:39:28 2009, masak wrote: > <masak> rakudo: class Forest { class Frog { method speak { say "ribbit > ribbit" } }; has Frog $.frog; method new() { my Frog $frog .= new; > self.bless(*, :$frog) } }; Forest.new > <p6eval> rakudo 0eaf62: OUTPUT«Null PMC access in type()in method > Forest::new [...] > * masak submits frog-bug > <moritz_> masak: nested classes are documented to be not working on > the status page (just FYI) > <masak> that's ok. > <masak> they also shouldn't be emitting Null PMC access errors. :) > <moritz_> aye
22:56 < [Coke]> rakudo: class Forest { class Frog { method speak { say "ribbit ribbit" } }; has Frog $.frog; method new() { my Frog $frog .= new; self.bless(*, :$frog) } }; Forest.new.say 22:56 <+p6eval> rakudo 2808a5: OUTPUT«Forest()<0x7b1c360>» ... This looks like it works now? -- Will "Coke" Coleda