summaryrefslogtreecommitdiff
path: root/test/files/pos/t0851.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t0851.scala')
-rwxr-xr-xtest/files/pos/t0851.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/files/pos/t0851.scala b/test/files/pos/t0851.scala
deleted file mode 100755
index fc7109dcd4..0000000000
--- a/test/files/pos/t0851.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-package test
-
-object test1 {
- case class Foo[T,T2](f : (T,T2) => String) extends (((T,T2)) => String){
- def apply(t : T) = (s:T2) => f(t,s)
- def apply(p : (T,T2)) = f(p._1,p._2)
- }
- implicit def g[T](f : (T,String) => String) = Foo(f)
- def main(args : Array[String]) : Unit = {
- val f = (x:Int,s:String) => s + x
- println(f(1))
- ()
- }
-}