mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
convert to instance/move instance: support default methods in interfaces for java 8 (IDEA-154833)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
interface I {
|
||||
}
|
||||
|
||||
class C implements I {
|
||||
}
|
||||
|
||||
interface J extends I {
|
||||
}
|
||||
|
||||
class D extends C implements J {
|
||||
}
|
||||
|
||||
class X {
|
||||
static void <caret>m(I i) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user