Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/newLambda/RawSubstitutionForInterfaceMethod.java

10 lines
136 B
Java

import java.util.function.Supplier;
class MyTest {
public static final Inh values = () -> "";
}
interface Inh extends Supplier {
}