blob: 3b657b672607c9301f728f1879c7327d9bca606d [file] [log] [blame]
// "Insert '(String)o' declaration" "false"
class C {
void f(Object o, Object f) {
if (o instanceof String && f instanceof String) {
<caret>
}
}
}