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

11 lines
216 B
Java

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