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