why in the example below, with mapTwo Kotlin can't infer the type of a ?
fun <U> mapOne(f: (Int) -> U): U = TODO()
fun <U> mapTwo(f: Function<Int, U>): U = TODO()
fun <T> mapper(a: T): List<T> = TODO()
fun main() {
mapOne(::mapper)
mapTwo(::mapper) //won 't compile
}