Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/trivialFunctionalExpressionUsage/beforeUnresolvedMethodRef.java
T

6 lines
193 B
Java

// "Replace method call on method reference with corresponding method call" "false"
import java.util.function.Supplier;
class Test {
String s = ((Supplier<String>) this::foo).ge<caret>t();
}