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

6 lines
169 B
Java

// "Replace lambda with method reference" "false"
class Test {
{
java.util.stream.IntStream.range(0, 8).mapToObj(i -> new St<caret>ring[] {"".substring(i)});
}
}