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

11 lines
215 B
Java

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