Files
2022-07-29 17:54:57 +00:00

11 lines
212 B
Java

// "Insert '(String)o' declaration" "true-preview"
class C {
void f(Object o) {
if (o instanceof String) {
String s = (String) o;
<caret>
o = "";
}
}
}