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