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