import java.util.function.Function; class MyTest { static > F from(F fun1) { return fun1; } void test2() { Function ext = from(x -> 1); } }