You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe error
Hi. Here is another syntax error.
Source code
class Test {
long instanceCount;
{
float f = 50.231F;
instanceCount &= (long) f;
}
}
and here is the decompiled code that cannot pass the compiler checking:
class Test {
long instanceCount;
Test() {
this.instanceCount &= 50.231f;
}
}
Here a '(long)' casting expression is missing after the '&='. Though it does not prevent us from understanding the code, I think will be better if we add a long casting expression here so that the decompiled code can be directly compiled again.
Would you like to have a look? All the source file, the compilation file and the decompiled files are available at longCastMissingafter&=.zip
Version:
Jadx : 1.4.1
Java JDK: 11.0.3
Android decompiler: dx8 of 30.0.2 building tool
Input Version: dex files
The text was updated successfully, but these errors were encountered:
Describe error
Hi. Here is another syntax error.
Source code
and here is the decompiled code that cannot pass the compiler checking:
Here a '(long)' casting expression is missing after the '&='. Though it does not prevent us from understanding the code, I think will be better if we add a long casting expression here so that the decompiled code can be directly compiled again.
Would you like to have a look? All the source file, the compilation file and the decompiled files are available at
longCastMissingafter&=.zip
Version:
Jadx : 1.4.1
Java JDK: 11.0.3
Android decompiler: dx8 of 30.0.2 building tool
Input Version: dex files
The text was updated successfully, but these errors were encountered: