mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
10 lines
240 B
Java
10 lines
240 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) {
|
|
/* bar */
|
|
String s = ("a" +/* who-hoo */ "x") + "foo";
|
|
}
|
|
} |