# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #61356] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=61356 >
It feels a bit odd that the below two one-liners don't work the same way in Rakudo r33860. $ perl6 -e 'class A { my $a = method { say self.WHAT }; method x { self.$a() } }; A.new.x' A $ perl6 -e 'my $a = method { say self.WHAT }; class A { method x { self.$a() } }; A.new.x' invoke() not implemented in class 'Undef' [...]