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


In Rakudo r33860, the following happens when you try to put a method
in an outer class after having defined an inner class:

$ perl6 -e 'class A { class B {}; method x { say self.WHAT } }; A.new.x'
Null PMC access in get_string()
[...]

$ perl6 -e 'class A; class B {}; method x { say self.WHAT }; A.new.x'
Null PMC access in get_string()
[...]

Reply via email to