Files
2022-07-27 10:00:37 +00:00

10 lines
155 B
Java

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