aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t0438.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t0438.scala')
-rw-r--r--tests/untried/pos/t0438.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/untried/pos/t0438.scala b/tests/untried/pos/t0438.scala
index fa5b7711f..dd1e7f9a9 100644
--- a/tests/untried/pos/t0438.scala
+++ b/tests/untried/pos/t0438.scala
@@ -1,5 +1,5 @@
class Foo {
- implicit def pair2fun2[A, B, C](f: (A, B) => C) =
+ 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