blob: e83436078bb710d4c88bca22149957e3a0287ca4 [file] [log] [blame]
@FunctionalInterface
interface Base {
default void foo() {
System.out.println("Hi there.");
}
}
class Child implements Base {
public abstract void bar();
}