blob: 331ac896fb534fd28f5d6cc2a4445a0951fe82f1 [file] [log] [blame]
@FunctionalInterface
interface Base {
default void foo() {
System.out.println("Hi there.");
}
void ba<caret>r();
}
class Child implements Base {
}