blob: 7ff37832e410ac4a941d5bbdbe82e817deff454a [file] [log] [blame]
// "Insert '(String)s' declaration" "true"
class C {
void f() {
String s = "";
if (s instanceof String) {
String s1 = (String) s;
<caret>
}
}
}