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