blob: 0d1106d8e4b6fcaa4868d1b7529461bae5896eaf [file] [log] [blame]
class MyTest {
static class Inner {
Inner(MyTest mt) {};
}
interface I {
Inner m(MyTest receiver);
}
static {
I i1 = (mt) -> new Inner(mt);
}
}