blob: 36975cff7e0687dd2c3b25a8bad4ca32b960ddd4 [file] [log] [blame]
interface Base {
default void foo() {
System.out.println("Hi there.");
}
void ba<caret>r();
}
class Test {
{
Base base = () -> {};
}
}