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" "true"
class Test {
void test() {
foo(true);
unresolved(!true);
foo(false);
unresolved(!false);
}
void foo(boolean b) {}
}