Given scala's type inference, I'd expect following not to fail:
scala> def partiallyApplied(x: Int, y: Int, z: Int) = x + y + z
partiallyApplied: (x: Int, y: Int, z: Int)Int
scala> val partialSum = partiallyApplied(2, 3, _)
<console>:11: error: missing parameter type for expanded function ((x$1) => partiallyApplied(2, 3, x$1))
val partialSum = partiallyApplied(2, 3, _)
^
And of course, this works:
scala> val partialSum = partiallyApplied(2, 3, _:Int)
partialSum: Int => Int = <function1>
Is there a reason why type inference does not help with partially applied function in this case?
Scala specification says exactly in which cases parameter types can be omitted and this isn't one of them:
Could it be changed to work in this specific case as well? Sure. Is the change worth it? Probably not.