# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #75454] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=75454 >
<pmichaud> rakudo: package A { package C::B { our sub c { say "OH HAI" } } }; A::C::B::c <p6eval> rakudo 1727ca: OUTPUT«Can not find sub A::C::B::c [...] <pmichaud> that one is wrong (afaik) <masak> cognominal: :) <pmichaud> that should've printed "OH HAI" * masak submits rakudobug <pmichaud> rakudo: package A { package C::B { our sub c { say "OH HAI" } } }; C::B::c <p6eval> rakudo 1727ca: OUTPUT«OH HAI» <pmichaud> afaik, that one is wrong. Same for other things which nest, like classes.