On Thu Oct 18 04:10:24 2012, bbkr wrote: > It breaks when parent class body is provided later. > > <moritz> r: class A { ... }; class B is A { }; class A { }; say B.new > <p6eval> rakudo 42a280: OUTPUT«No such method 'new' for invocant of > type 'B' in block at > /tmp/MEw1Loww7z:1»
Fails differently on today's moar: > class A { ... }; class B is A { }; class A { }; say B.new Cannot invoke this object (REPR: Null, cs = 0) -- Will "Coke" Coleda