# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #61500] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=61500 >
<masak> rakudo: class A { has $foo = 7; method x { say $!foo } }; A.new.x <p6eval> rakudo 34088: OUTPUT[7] <masak> rakudo: class A { has $foo = 7 }; class B is A { method x { say $!foo } }; B.new.x <p6eval> rakudo 34088: OUTPUT[] <masak> looks like a bug to me. <lichtkind> i would say too * masak submits <masak> rakudo: class A { has $!foo = 7 }; class B is A { method x { say $!foo } }; B.new.x <p6eval> rakudo 34088: OUTPUT[] <masak> oh, this has nothing to do with the absence of ! I'm not 100% sure this is an error. But it seems a bit strange to me.