var a int[1];
var aa int[1];
aa = a;
Suppose we wanted to compile something like this in java jvm. It would seam that one would just do a
ldc 1
newarray int
astore 0
ldc 1
newarray int
astore 1
aload 0
istore 1
However this is not work it is throwing a (class: test, method: main signature: ()V) Expecting to find integer on stack
Can you not aload
an array into a local variable?