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,9 @@
// "Unroll loop" "true"
class Test {
void test() {
System.out.println(1);
System.out.println(2);
System.out.println(3);
System.out.println(4);
}
}