summaryrefslogtreecommitdiff
path: root/test/files/pos/t0438.scala
blob: fa5b7711ffe173bc15e74f96e0c2c6f519c6bea0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class Foo {
  implicit def pair2fun2[A, B, C](f: (A, B) => C) =
     {p: (A, B) => f(p._1, p._2) }

  def foo(f: ((Int, Int)) => Int) = f
  def bar(x: Int, y: Int) = x + y

  foo({ (x: Int, y: Int) => x + y }) // works
  foo(pair2fun2(bar _)) // works
  foo(bar _) // error
  foo(bar)   // same error
}