blob: a7ffa693eb011c4cf450865e2867f2e8ff6fe5f6 [file] [log] [blame]
// "Create Local Variable 'str'" "true"
public class A {
void foo() {
String str;
String s = str;
str = null;
}
}