Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeUnusedVariable/afterForUpdate2.java

11 lines
200 B
Java

// "Remove variable 'problematic'" "true"
class C {
Object foo = null;
void case02() {
for(int i = 10; i > 0; i--) {
System.out.println("index = " + i);
}
}
}