mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 01:41:11 +07:00
GitOrigin-RevId: 81b2e38494d7792dfe3ec13703851e4eb1539e71
13 lines
159 B
Plaintext
13 lines
159 B
Plaintext
interface I {
|
|
default void foo() {}
|
|
}
|
|
|
|
class WithPrivateInner {
|
|
private class Inner implements I {}
|
|
}
|
|
|
|
class WithUsage {
|
|
void n(I i) {
|
|
i.foo();
|
|
}
|
|
} |