blob: 17d30a741d0896ce839b37dd1e45d85327648aae [file] [log] [blame]
import java.lang.Object;
class IFoo {
Object getValue() {}
}
class Foo extends IFoo {
Foo getValue() {}
void foo(IFoo o) {
if (o instanceof Foo) {
o.getv<caret>x
}
}
}