# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #58824] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=58824 >
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 [...] Though my reading of the synopses doesn't indicate that marking the class A as "is export", doing that doesn't change the result.