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