Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/useHashCode/beforeSideEffect.java
T
2024-01-15 16:29:07 +00:00

8 lines
210 B
Java

// "Replace with 'Long.hashCode()'" "false"
public class Test {
long var = 1234567890123456789L;
public void testMethod() {
int result = (int<caret>)((var++) ^ ((var++) >>> /*shift amount*/ 32));
}
}