Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/newMethodRef/RefOnStaticInterfaceMethod.java

13 lines
107 B
Java

interface I {
static void a() {}
}
interface J {
void foo();
}
class Test {
{
J j = I::a;
}
}