aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/resultGuidesInference.scala
blob: 4e02504e0fdd08a94c27ac275eb80a2169c5f24e (plain) (blame)
1
2
3
4
5
6
7
object test {

  def foo[T](x: T => T): Array[T] = ???

  val x: Array[Int] = foo(x => x)

}