# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #63004] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63004 >
Parrot r36318 (before the merge that broke Rakudo), and Rakudo 21f374. For some reason, creating a literal array with seven elements works, but not eight. $ perl6 -e 'my @layers = [0, 0, 0, 0, 0, 0, 0]; .perl.say for @layers' [0, 0, 0, 0, 0, 0, 0] $ perl6 -e 'my @layers = [0, 0, 0, 0, 0, 0, 0, 0]; .perl.say for @layers' error:imcc:syntax error, unexpected ')' (')') in file 'EVAL_16' line 58 Null PMC access in isa() [...]