Files

11 lines
94 B
Java

interface FooImpl extends Foo {}
class AAA {
void m() {
FooImpl l = () -> {};
}
}