mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-28 17:50:07 +07:00
7e1064ea3c
GitOrigin-RevId: 22a46c15d8900d8a31514846755a013f6a67ad42
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)) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |