blob: 6687f96d69a1e2a6739bf6202e1384b3c09518b7 [file] [log] [blame]
interface I {
static void a() {}
}
interface J {
void foo();
}
class Test {
{
J j = I::a;
}
}