Files

9 lines
118 B
Plaintext

class Foo {
void m(Runnable r) {}
void ff(Runnable r) {
m(r);
}
{
m(() -> {});
}
}