aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t0438.scala
blob: 1615e3da7074e3f90783c2ac8d8ce9207e66131d (plain) (tree)
1
2
3
4
5
6
7
8
           
                                                                  




                                     
                                           



                                
class Foo {
  implicit def pair2fun2[A, B, C](f: (A, B) => C): ((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
}