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


$ cat A.pm
use v6;
use B;

class A does C {
}
$ cat B.pm
use v6;
use C;
$ cat C.pm
use v6;

role C {
}
$ perl6 A.pm # works

I've encountered cases where this fails during PIR compilation, but I
am unable to reproduce them right now. AFAIU, it should fail always.

Reply via email to