mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
13 lines
253 B
Java
13 lines
253 B
Java
|
|
import java.util.function.Function;
|
|
class Test {
|
|
{
|
|
foo(s -> {
|
|
foo(s::concat);
|
|
return s;
|
|
});
|
|
}
|
|
|
|
<S,<error descr="'>' expected."><error descr="Type parameter expected"> </error></error> void foo(Function<String, String> f){}
|
|
}
|