import java.util.function.Function; class Test { static void foo(Function f) {} static void test() { foo((Object o) -> o.hashCode()); } }