[perl #64270] Cannot call private &!a variables in a class in Rakudo

2009-05-20 Thread jn...@jnthn.net via RT
On Sun Mar 29 09:40:06 2009, masak wrote: > rakudo: class A { has &!a = { say "OH HAI" }; method foo { > &!a() } };A.new.foo > rakudo 7af829: OUTPUT«No such attribute '!a' [...] > * masak submits rakudobug > > The error message is contradictory, since there obviously is an > attribute '!a'. Usin

[perl #64270] Cannot call private &!a variables in a class in Rakudo

2009-03-29 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64270] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64270 > rakudo: class A { has &!a = { say "OH HAI" }; method foo { &!a() } };A.new.foo rakudo