# New Ticket Created by Alex Jakimenko # Please include the string: [perl #125731] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=125731 >
Code:
role A { };
role B does A { };
B.new.^roles.say;
Result:
(B)
As skids points out, the expected result should be "(A) (B)" or "(B::A)
(B)".
This bug was found by ChoHag. See IRC log:
http://irclog.perlgeek.de/perl6/2015-07-31#i_10985350
