Files

6 lines
106 B
Java

interface A {}
interface B extends A {
default void f<caret>oo() {
System.out.println("in B");
}
}