We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
l as long = 32768 print l
generates the following bytecode
30: ldc 32768 (129) 32: istore_1 33: getstatic java.lang.System.out Ljava/io/PrintStream; (47) 36: iload_1 37: invokevirtual java.io.PrintStream.println (Llong;)V (132)
The 37: has the parameter (Llong;) but it should be (J) ie 37: invokevirtual java.io.PrintStream.println (J)V (132)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
generates the following bytecode
30: ldc 32768 (129)
32: istore_1
33: getstatic java.lang.System.out Ljava/io/PrintStream; (47)
36: iload_1
37: invokevirtual java.io.PrintStream.println (Llong;)V (132)
The 37: has the parameter (Llong;) but it should be (J)
ie
37: invokevirtual java.io.PrintStream.println (J)V (132)
The text was updated successfully, but these errors were encountered: