Details
Description
Hey, starting with Groovy 1.8.x, and now as well with Groovy 2.0, the following code produces an error
int[][] x = new int[10][10]
x[1][1] += 5
Error is:
Caught: java.lang.VerifyError: (class: test, method: run signature: ()Ljava/lang/Object Incompatible argument to function
java.lang.VerifyError: (class: test, method: run signature: ()Ljava/lang/Object Incompatible argument to function
(there were some issues with multidimensional arrays in earlier versions but it still seems to be a problem in the new version)