// "Unroll loop" "true-preview" class Test { void test() { for(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) {} }