summaryrefslogblamecommitdiff
path: root/test/files/pos/t0438.scala
blob: 33b7efeaac44716b938635562814af382ecaa21a (plain) (tree)
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
}