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