mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
don't treat static method as concrete in hierarchy (IDEA-180930)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
interface A {
|
||||
default void m() { }
|
||||
}
|
||||
|
||||
interface B {
|
||||
static void m() { }
|
||||
}
|
||||
|
||||
interface C {
|
||||
void m();
|
||||
}
|
||||
|
||||
class <error descr="Class 'D' must either be declared abstract or implement abstract method 'm()' in 'C'">D</error> implements A, B, C { }
|
||||
Reference in New Issue
Block a user