mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-18 17:54:31 +07:00
check used references for java 1.8- as call sites would call abstract method of interface anyway (IDEA-187991)
13 lines
161 B
Plaintext
13 lines
161 B
Plaintext
interface I {
|
|
default void foo() {}
|
|
}
|
|
|
|
class WithPrivateInner {
|
|
private class Inner implements I {}
|
|
}
|
|
|
|
class WithUsage {
|
|
void n(I i) {
|
|
i.foo();
|
|
}
|
|
} |