Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeUnusedVariable/after17.java
2010-06-25 12:46:40 +04:00

13 lines
150 B
Java

// "Remove variable 'o'" "true"
import java.io.*;
class a {
int k;
private int run() {
int a = 0;<caret>
return a;
}
}