mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
java: override default with super call (IDEA-258822, IDEA-259098)
GitOrigin-RevId: 295ac3cb605800b005784674c2bac20f0de951ff
This commit is contained in:
committed by
intellij-monorepo-bot
parent
d9a5f3609d
commit
0e8e6abfcb
@@ -0,0 +1,11 @@
|
||||
interface I {
|
||||
default void f() {}
|
||||
}
|
||||
|
||||
interface A extends I {
|
||||
@Override
|
||||
default void f() {
|
||||
I.super.f();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user