Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/unrollLoop/beforeUnrollCounting.java
Tagir Valeev 91b269f9fb CountingLoop: support decreasing loops
Fixes IDEA-190412 Unroll loop action: support decreasing loops
2018-04-17 17:48:00 +07:00

9 lines
165 B
Java

// "Unroll loop" "true"
class Test {
void test() {
fo<caret>r (int i = 0; i != 10; i++ // line comment
) {
System.out.println("Hi!" + i);
}
}
}