Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/streamApiMigration/beforeRangeReassignedNested.java

16 lines
292 B
Java

// "Replace with collect" "false"
public class Test {
public void test(int n) {
for(int <caret>i=0; i<n; i++) {
for(int j=0; j<i; j++) {
j = j * 2;
System.out.println(j);
}
}
}
public static void main(String[] args) {
new Test().test(20);
}
}