[perl #128341] [JVM] RuntimeException when calling .perl on multidimensional array with some elements autovivified

2016-11-13 Thread Christian Bartolomaeus via RT
Fixed with https://github.com/rakudo/rakudo/commit/13f6b63455 I'm closing this ticket as 'resolved'.

[perl #128341] [JVM] RuntimeException when calling .perl on multidimensional array with some elements autovivified

2016-06-07 Thread Christian Bartolomaeus via RT
As a follow-up: The following code works as expected: $ perl6-j -e 'my @a; @a[0;1] = "foo"; @a[0;0] = "bar"; say @a.perl' [["bar", "foo"],]