# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #60176] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60176 >
Rakudo r32151 can't create classes with roles from the Rakudo-defined classes. $ ./perl6 -e 'role B {}; class A does B {}' # this works $ perl6 -e 'class A does Int {}' # this doesn't Method 'methods' not found [...] Now, Int is a class in Rakudo, so I'm not 100% sure this should work. Still, strange error message.