summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createLocalFromUsage/afterNull.java
blob: a7ffa693eb011c4cf450865e2867f2e8ff6fe5f6 (plain)
1
2
3
4
5
6
7
8
9
// "Create Local Variable 'str'" "true"
public class A {
    void foo() {
        String str;
        String s = str;
        str = null;
    }

}