But is this right? What about default methods in interfaces? They are not instance methods as far as i understand.
Code: Select all
public interface A {
default void x() {}
}
Code: Select all
public interface B extends A {
@Override
default void x() {
}
}