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