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

9 lines
208 B
Java

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