# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #61348] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=61348 >
Rakudo r33860 can handle extending classes with new methods just fine... $ perl6 -e 'class A {}; class A is also { method foo() { say "OH HAI" } }' # works ...but not when the class wasn't first defined. $ perl6 -e 'class A is also { method foo() { say "OH HAI" } }' # mwhahaha Null PMC access in find_method() [...] Maybe the above _should_ be an error (though I don't immediately see a reason), but I don't think it should be a Null PMC access.