blob: aa5f6d6908037640caeabfea20252a7ebaeacc79 [file] [log] [blame]
// "Insert '(String)o' declaration" "true"
class C {
void f(Object o, Object f) {
if (o instanceof String) {//todo comment
String s = (String) o;
}
}
}