mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
17 lines
483 B
Java
17 lines
483 B
Java
// "Unroll loop" "true-preview"
|
|
class Test {
|
|
void test(Object y) {
|
|
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);
|
|
if (!(Math.random() > 0.5)) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |