blob: 4789b08b191d302a3f8726c7b38ea6f631355246 [file] [log] [blame]
// "Insert '(String)o' declaration" "true"
class C {
void f(Object o, Object f) {
if (o instanceof String && f == null) {
String s = (String) o;
<caret>
}
}
}