mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 22:20:24 +07:00
1f6ad2d2bb
GitOrigin-RevId: e096580618c805f0e1f5c8e1a878b5e3321174c7
11 lines
229 B
Java
11 lines
229 B
Java
// "Unroll loop" "true"
|
|
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) {}
|
|
} |