blob: 0dbcc3e35fecb9f4a1cf82a8420fd4c8c2d482ce [file] [log] [blame]
import java.util.function.Function;
class Test {
<U, V> void foo(Function<U, ? extends V> m) {}
{
foo((String e) -> e.length());
}
}