Files

9 lines
128 B
Java

interface A {
void foo();
}
interface B extends A {
@Override
default void foo() {
System.out.println("in B");
}
}