# New Ticket Created by  "Brian S. Julin" 
# Please include the string:  [perl #124162]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=124162 >



Code that runs fine before precomp, breaks when an array of native
arrays is used after precomp.

$ cat /tmp/aoa.pm6 
my @f = $(array[uint32].new(0,1)), $(array[uint32].new(3,4));
$ PERL6LIB=/tmp/ perl6 -Maoa -e "1;"
$ perl6 --output=/tmp/aoa.pm6.moarvm --target=mbc /tmp/aoa.pm6
$ PERL6LIB=/tmp/ perl6 -Maoa -e "1;"
===SORRY!===
Must parameterize array[T] with a type before creating it
$ 

Reply via email to