blob: 75ee4c010c89039f8d72d441d2ba33ede0726991 [file] [log] [blame]
public class MyTest {
MyTest() {}
interface I {
MyTest m();
}
static void test(I i) {
i.m();
}
static {
I i = () -> new MyTest();
}
}