mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
9 lines
280 B
Java
9 lines
280 B
Java
// "Replace with 'Long.hashCode()'" "true-preview"
|
|
public class Test {
|
|
Long var = 1234567890123456789L;
|
|
Long var1 = 1234567890123456784L;
|
|
|
|
public void testMethod(boolean f) {
|
|
int result = (int<caret>)((f ? var : var1) ^ ((f ? var : var1) >>> /*shift amount*/ 32));
|
|
}
|
|
} |