aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0851.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-03-16 21:42:10 +0100
committerTobias Schlatter <tobias@meisch.ch>2014-03-21 11:28:30 +0100
commit90f430bfb9178e49dc112bacf5b250d0780dcd1e (patch)
tree49fef9cac0869ae34f33c964c38089ddbb9d1689 /tests/pos/t0851.scala
parent7bf837c79315e5db7e049f3ffeb6c6842d18880c (diff)
downloaddotty-90f430bfb9178e49dc112bacf5b250d0780dcd1e.tar.gz
dotty-90f430bfb9178e49dc112bacf5b250d0780dcd1e.tar.bz2
dotty-90f430bfb9178e49dc112bacf5b250d0780dcd1e.zip
More tests
which all pass.
Diffstat (limited to 'tests/pos/t0851.scala')
-rw-r--r--tests/pos/t0851.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/pos/t0851.scala b/tests/pos/t0851.scala
new file mode 100644
index 000000000..fdc504af7
--- /dev/null
+++ b/tests/pos/t0851.scala
@@ -0,0 +1,14 @@
+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[T, String] = Foo(f)
+ def main(args : Array[String]) : Unit = {
+ val f = (x:Int,s:String) => s + x
+ println(f(1))
+ ()
+ }
+}