mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-20 04:08:32 +07:00
IDEA-338114, IDEA-339366 GitOrigin-RevId: 5e51384d160e29f3c81b99c9c50260cb883d9c46
9 lines
232 B
Java
9 lines
232 B
Java
// "Replace with 'Long.hashCode()'" "true-preview"
|
|
public class Test {
|
|
Long var = 1234567890123456789L;
|
|
Long var1 = 1234567890123456784L;
|
|
|
|
public void testMethod(boolean f) {
|
|
int result = (f ? var : var1).hashCode();
|
|
}
|
|
} |