Files
2023-02-14 13:53:56 +00:00

11 lines
212 B
Java

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