mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
19 lines
526 B
Java
19 lines
526 B
Java
// "Unroll loop" "true-preview"
|
|
class Test {
|
|
void test() {
|
|
if (!(Math.random() > 0.5)) {
|
|
System.out.println((Object) "one");
|
|
if (!(Math.random() > 0.5)) {
|
|
System.out.println((Object) 1);
|
|
if (!(Math.random() > 0.5)) {
|
|
System.out.println((Object) 1.0);
|
|
if (!(Math.random() > 0.5)) {
|
|
System.out.println((Object) 1.0f);
|
|
}
|
|
}
|
|
}
|
|
}//Comment
|
|
}
|
|
|
|
void foo(boolean b) {}
|
|
} |