Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/lambda2methodReference/beforeVarargsOne.java
T
2020-06-09 12:46:23 +03:00

9 lines
276 B
Java

// "Replace lambda with method reference" "true"
import java.util.function.BiFunction;
class Example {
public static void main(String[] args) {
BiFunction<String, String, Example> f3 = (a, b) -> new<caret> Example(a, b);
}
public Example(String a, String... b) {}
}