blob: fcdf860ad7f9065769b7e7610fcaa97ee8a1e16d [file] [log] [blame]
import java.util.List;
import java.util.function.BinaryOperator;
import java.util.function.Function;
class FooBar<K> {
void foo(List<K > s) {}
<T, U> List<T> bar(BinaryOperator<U> kk, Function<T, U> f){
return null;
}
void f(FooBar<Integer> integerFooBar){
integerFooBar.foo(bar((a, b) -> a + b, x -> 1));
}
}