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