mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
15 lines
408 B
Java
15 lines
408 B
Java
// "Replace method call on lambda with lambda body" "true-preview"
|
|
|
|
import java.util.*;
|
|
import java.util.function.*;
|
|
|
|
public class Test {
|
|
public static void main(String[] args) {
|
|
List<String> list = new ArrayList<>();
|
|
if(list.isEmpty())
|
|
((Consumer<String>) x -> {
|
|
System.out.println(x);
|
|
list.add(x);
|
|
}).<caret>accept("foo");
|
|
}
|
|
} |