blob: 670ce55da81d69849f6b90698faa9689f4eeed94 [file] [log] [blame]
class X {
interface I {
void _();
}
static void m() {}
{
I i = () -> m();
}
}