blob: 1ddc1ab5e51adbb60eb3865fbd3d5e48e7cd66ba [file] [log] [blame]
interface Base {
default void foo() {
System.out.println("Hi there.");
}
}
class Test {
{
Base base = () -> {};
}
}