mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
11 lines
237 B
Java
11 lines
237 B
Java
// "Unroll loop" "true-preview"
|
|
class Test {
|
|
void test() {
|
|
fo<caret>r(Object x : new Object[] {"one", 1, 1.0, 1.0f}) {
|
|
if(Math.random() > 0.5) break;
|
|
System.out.println(x);
|
|
}//Comment
|
|
}
|
|
|
|
void foo(boolean b) {}
|
|
} |