# New Ticket Created by  Daniel Ruoso 
# Please include the string:  [perl #64002]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64002 >


role Foo {};
role Bar {};
role SigType does Foo does Bar {};

say SigType ~~ Foo; # this was supposed to be true
say Foo ~~ SigType; # this is false


but it is returning false in both...

daniel

Reply via email to