blob: 50fd08d85e975ef2d552872888c667f8447aabab [file] [log] [blame]
interface Base {
void bar();
}
class Test {
{
Base base = () -> {};
}
}
class Child implements Base {
public void foo() {
System.out.println("Hi there.");
}
}