Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/lambda2methodReference/afterPrimitiveArrayConstructorRef.java

10 lines
161 B
Java

// "Replace lambda with method reference" "true"
class Example {
interface Jjj {
int[] jjj(int p);
}
{
Jjj jjj = int[]::new;
}
}