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