mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 12:18:27 +07:00
GitOrigin-RevId: 2d9591f9d9a558c4a61ac226556ef9f551d6e0c2
8 lines
197 B
Java
8 lines
197 B
Java
// "Replace with 'Long.hashCode()'" "true-preview"
|
|
public class Test {
|
|
long var = 1234567890123456789L;
|
|
|
|
public void testMethod() {
|
|
int result = (int<caret>)((var >>> (16+16)) ^ var);
|
|
}
|
|
} |