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

17 lines
416 B
Java

// "Replace method call on lambda with lambda body" "true"
import java.util.function.Function;
public class Test {
public static void main(String[] args) {
/* comment1 */
System.out.println(/* output x */"a"+/* who-hoo */ "x");
// comment2
System.out.println("hello");
/*in return */
String s = "foo" + //inline
"bar";
}
}