Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createLocalFromUsage/afterNull.java

10 lines
147 B
Java

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