# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #73368]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=73368 >
<masak> rakudo: class A { has $.b = my $foo = 42; method x { say $foo
} } A.new.x
[23:17]
<p6eval> rakudo 14a83e: OUTPUT«Null PMC access in getprop() [...]
* masak submits rakudobug
<masak> rakudo: class A { my $foo = 42; method x { say $foo } }; A.new.x
<p6eval> rakudo 14a83e: OUTPUT«42»