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,12 @@
// "Unroll loop" "true"
class Test {
void test() {
boolean steps = {true, false};
fo<caret>r(boolean step : steps) {
foo(step);
unresolved(!step);
}
}
void foo(boolean b) {}
}