mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 00:29:34 +07:00
14 lines
167 B
Java
14 lines
167 B
Java
class A {
|
|
protected void foo() {}
|
|
}
|
|
|
|
class C {
|
|
final A a = new A() {
|
|
@Override
|
|
public void foo() {}
|
|
};
|
|
|
|
{
|
|
a.f<ref>oo();
|
|
}
|
|
} |