Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/highlighting/RawWhenNoParams.java

17 lines
291 B
Java

public class FooBar {
private static final class Bar2 {
private Bar2() {
}
}
private interface I<T> {
T create();
}
static void foo(I intf) {}
public static void main(String[] args) throws Exception {
foo(() -> new Bar2());
}
}