Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createLocalFromUsage/afterNull.java
2014-12-06 12:06:31 +03:00

10 lines
147 B
Java

// "Create local variable 'str'" "true"
public class A {
void foo() {
String str;
String s = str;
str = null;
}
}