Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/trivialFunctionalExpressionUsage/beforeUnresolvedMethodRef.java
2016-01-12 13:45:16 +01:00

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();
}