blob: ca5d06f6abb1129255be17d97008e323fa0650f4 [file] [log] [blame]
interface Base {
}
class C implements Base {
public void foo() {
System.out.println("Hi there.");
}
}