blob: 409487b150b74a23f3b3e645c0e887742e311d45 [file] [log] [blame]
// "Insert '(String)o' declaration" "true"
class C {
void f(Object o) {
if (o instanceof String<caret>)
o = "";
}
}