mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
8 lines
219 B
Java
8 lines
219 B
Java
// "Insert '.apply' to call functional interface method" "true-preview"
|
|
import java.util.function.Function;
|
|
|
|
public class Test {
|
|
public void test(Function<String, String> fn) {
|
|
String res = f<caret>n("foo");
|
|
}
|
|
} |