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

9 lines
138 B
Java

// "Create Local Variable 't'" "true"
class Test {
private void f() {
int t<caret>;
int i = t;
t = 0;
}
}