mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
Also: fix comment processing Improvement of IDEA-338114 GitOrigin-RevId: 87d057ccbea4262c40e2717c2ea3c004ac9865b0
8 lines
223 B
Java
8 lines
223 B
Java
// "Replace with 'Long.hashCode()'" "true-preview"
|
|
public class Test {
|
|
void test(double d) {
|
|
long l = Double.doubleToLongBits(d);
|
|
System.out.println((int) (l ^ (l<caret> >>> 32)));
|
|
System.out.println(l);
|
|
}
|
|
} |