mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
230 B
Java
18 lines
230 B
Java
interface I {
|
|
boolean <caret>isFoo();
|
|
}
|
|
|
|
class RRR implements I {
|
|
public boolean isFoo() {
|
|
return true;
|
|
}
|
|
|
|
{
|
|
boolean foo = isFoo();
|
|
}
|
|
|
|
void g(I i) {
|
|
boolean foo = i.isFoo();
|
|
}
|
|
}
|