Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-beta-3
-
None
Description
class C {
test(int x)
}
generates bytecodes which fail validation:
java.lang.VerifyError: (class: C, method: test signature: (I)Ljava/lang/Object Expecting to find object/array on stack
Removintg the int declaration from the method declaration fixes the problem.
It looks like code is generated which still expects an Object parameter rather than in int.