On Sun Jan 11 14:06:52 2009, moritz wrote: > On Sun Jan 11 12:02:21 2009, matt-w wrote: > > Put this code through Rakudo: > > > > use v6; > > > > role TestRole { > > method foo() { ... } > > } > > > > class TestClass does TestRole { > > method foo() { say "render"; } > > } > > > > my TestClass $t .= new(); > > matt-w also added that as a test case to t/spec/S12-roles/composition.t. > Fixed in r35443, and moritz++ unfudged the test.
Thanks! Jonathan