mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 17:14:09 +07:00
check used references for java 1.8- as call sites would call abstract method of interface anyway (IDEA-187991)
13 lines
169 B
Java
13 lines
169 B
Java
interface I {
|
|
static void f<caret>oo(I i) {}
|
|
}
|
|
|
|
class WithPrivateInner {
|
|
private class Inner implements I {}
|
|
}
|
|
|
|
class WithUsage {
|
|
void n(I i) {
|
|
I.foo(i);
|
|
}
|
|
} |