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