blob: 469ee86ef62a1f61ae2c5e1ad3bb851f1e2afd52 [file] [log] [blame]
interface Base {
default void foo() {
System.out.println("Hi there.");
}
}
interface I2 extends Base {
}