# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #59928] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=59928 >
Rakudo r31994 can call methods on classes without :: in them, but not on classes having them. $ perl6 -e 'class A { method foo { say "OH HAI" } }; A.new.foo' OH HAI $ perl6 -e 'class A::B { method foo { say "OH HAI" } }; A::B.new.foo' Method 'foo' not found for invocant of class 'A;B' [...] Possibly related to the (now resolved) #58368.