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