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