mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
GitOrigin-RevId: d13d5bf7670009a4d26f09b4838828b5adeb4bde
10 lines
238 B
Java
10 lines
238 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";
|
|
}
|
|
} |