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

10 lines
230 B
Java

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