-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
java.lang.VerifyError is being thrown in specific case #42
Labels
Comments
Full error detail
|
Could this be related to #29? |
Yes, it could be related. There are a couple of cases where the generated bytecode is not correct. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
java.lang.VerifyError
is being thrown with the following code example:With any of the following changes to the
test()
method, it no longer throws the error:System.out.println(myModel.myInt.doubleValue());
:System.out.println(myModel.myInt.doubleValue());
by 1 line:testModelArr
to list for thefor
loop:Any idea why this is happening in this specific case?
The text was updated successfully, but these errors were encountered: