Files
2022-09-26 17:31:54 +00:00

12 lines
206 B
Java

// "Replace '(String) o' with 's1'" "true-preview"
class C {
void foo(Object o) {
String s1 = (String) o;
if (Math.random() > 0.5) {
s1 = null;
return;
}
String s2 = s1;
}
}