[perl #77274] [BUG] Class cannot inherit first from parent and then from grandparent in Rakudo

2011-10-08 Thread Will Coleda via RT
On Tue Aug 17 06:22:55 2010, masak wrote: > rakudo: class A { method foo { say "OH HAI" } }; class B is A > {}; class C is A is B {}; say "alive"; C.new.*foo > rakudo 85602a: OUTPUT«===SORRY!===␤Could not build C3 > linearization: ambiguous hierarchy␤» > * masak submits rakudobug > it's a good d

[perl #77274] [BUG] Class cannot inherit first from parent and then from grandparent in Rakudo

2010-08-17 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #77274] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=77274 > rakudo: class A { method foo { say "OH HAI" } }; class B is A {}; class C is A is B {};