On Mon, Jun 09, 2008 at 05:02:38AM -0700, Moritz Lenz wrote: > # New Ticket Created by Moritz Lenz > # Please include the string: [perl #55520] > # in the subject line of all future correspondence about this issue. > # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=55520 > > > rakudo r28192 > > > class A { has $.a, $.b }; > error:imcc:syntax error, unexpected '\n', expecting '(' > in file 'EVAL_11' line 37A
Here I'm guessing that rakudo should report "Unrecognized variable '$.b'" or something like that. > And the non-interactive version says: > $ cat test.t > > class A { has ($.a, $.b) }; Rakudo doesn't yet support parenthesized scope declarations -- we'll likely add that soon. Thanks! Pm