On Sat Sep 13 03:41:27 2008, masak wrote: > Rakudo r31066 is experiencing problems with classes defined in "use"d > modules. > > $ perl6 -e 'class A {}; class B is A {}' # this works > $ cat A.pm # but... put the class A in a file... > class A {} > $ ./perl6 -e 'use A; class B is A {}' # ...and it stops working > Attempt to inherit from non-existent parent class > [...] > Ah, I fixed a dupe of this ticket earlier on today - use wasn't being done at compile time, but rather at runtime. Just checked and this now works, so resolving ticket.
Thanks, Jonathan