summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/lambda2methodReference/afterAmbiguityWithoutSuperMethods.java
blob: 54310c8da75fad46e8c8c67d9bddf98fb49fe0d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// "Replace lambda with method reference" "true"
import java.io.PrintStream;
import java.util.function.BiConsumer;

class Test {
  {
    BiConsumer<PrintStream, String> printer = PrintStream::println;
  }


}