@FunctionalInterface interface Base { default void foo() { System.out.println("Hi there."); } void bar(); } class Child implements Base { }