mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
14 lines
191 B
Java
14 lines
191 B
Java
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
|
|
}
|
|
}
|
|
} |