mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
17 lines
420 B
Java
17 lines
420 B
Java
// "Replace method call on lambda with lambda body" "true-preview"
|
|
|
|
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";
|
|
}
|
|
} |