# New Ticket Created by Matt Diephouse # Please include the string: [perl #40102] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=40102 >
mini:~/Projects/parrot mdiep$ cat test.pir .sub main :main $P0 = new .Array $P0 = 0 $P1 = new .Array $P1 = 1 $P2 = new .String $P2 = 'Foo' $P1[0] = $P2 splice $P0, $P1, 20, 0 end .end mini:~/Projects/parrot mdiep$ parrot test.pir list structure chaos! That's an awful error. It should say "Array index out of bounds" or anything more useful than "list structure chaos!". -- Matt Diephouse