IDEA-178774 Unroll loop intention action

This commit is contained in:
Tagir Valeev
2017-09-12 09:25:51 +07:00
parent 13a641fd64
commit 94a5fea51d
16 changed files with 313 additions and 1 deletions
@@ -0,0 +1,11 @@
// "Unroll loop" "false"
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);
}
}
void foo(boolean b) {}
}