interface Base { default void foo() { System.out.println("Hi there."); } } class C implements Base { }