mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
9 lines
210 B
Java
9 lines
210 B
Java
// "Unroll loop" "true-preview"
|
|
class Test {
|
|
void test(Object y) {
|
|
fo<caret>r(Object x : new Object[] {"one", 1, 1.0, 1.0f}) {
|
|
System.out.println(x);
|
|
if(Math.random() > 0.5) break;
|
|
}
|
|
}
|
|
} |