# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64386]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64386 >
<ruoso> rakudo: class A { has $.foo; submethod BUILD($obj) { $!foo = 7
} }; say A.new.foo;
<p6eval> rakudo c40f3b: OUTPUT«Null PMC access in getprop() [...]
* masak submits rakudobug
<masak> rakudo: class A { has $.a; method foo { self.bar }; submethod
bar { $!a = 7 } }; A.new.foo
<p6eval> rakudo c40f3b: ( no output )
<masak> something specifically to do with BUILD, then.