aboutsummaryrefslogtreecommitdiff
path: root/tests/pos
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2017-02-21 15:23:35 +0100
committerMartin Odersky <odersky@gmail.com>2017-02-21 15:35:17 +0100
commitf37b2a1dcddd2fdb8be0f703e3feb9e3c2630514 (patch)
tree95dca553db0786275cfc023028a445859b637062 /tests/pos
parent9f879c1677b467037f6c19cc0abe43e0adb802fa (diff)
downloaddotty-f37b2a1dcddd2fdb8be0f703e3feb9e3c2630514.tar.gz
dotty-f37b2a1dcddd2fdb8be0f703e3feb9e3c2630514.tar.bz2
dotty-f37b2a1dcddd2fdb8be0f703e3feb9e3c2630514.zip
Add overloading support for case-closures
case-closures (which are represented as Match nodes) have a known arity just like other function literals. So shape analysis for overloading resolution should apply to them as well.
Diffstat (limited to 'tests/pos')
-rw-r--r--tests/pos/inferOverloaded.scala41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/pos/inferOverloaded.scala b/tests/pos/inferOverloaded.scala
new file mode 100644
index 000000000..e5e800644
--- /dev/null
+++ b/tests/pos/inferOverloaded.scala
@@ -0,0 +1,41 @@
+class MySeq[T] {
+ def map1[U](f: T => U): MySeq[U] = new MySeq[U]
+ def map2[U](f: T => U): MySeq[U] = new MySeq[U]
+}
+
+class MyMap[A, B] extends MySeq[(A, B)] {
+ def map1[C](f: (A, B) => C): MySeq[C] = new MySeq[C]
+ def map1[C, D](f: (A, B) => (C, D)): MyMap[C, D] = new MyMap[C, D]
+ def map1[C, D](f: ((A, B)) => (C, D)): MyMap[C, D] = new MyMap[C, D]
+
+ def foo(f: Function2[Int, Int, Int]): Unit = ()
+ def foo[R](pf: PartialFunction[(A, B), R]): MySeq[R] = new MySeq[R]
+}
+
+object Test {
+ val m = new MyMap[Int, String]
+
+ // This one already worked because it is not overloaded:
+ m.map2 { case (k, v) => k - 1 }
+
+ // These already worked because preSelectOverloaded eliminated the non-applicable overload:
+ m.map1(t => t._1)
+ m.map1((kInFunction, vInFunction) => kInFunction - 1)
+ val r1 = m.map1(t => (t._1, 42.0))
+ val r1t: MyMap[Int, Double] = r1
+
+ // These worked because the argument types are known for overload resolution:
+ m.map1({ case (k, v) => k - 1 }: PartialFunction[(Int, String), Int])
+ m.map2({ case (k, v) => k - 1 }: PartialFunction[(Int, String), Int])
+
+ // These ones did not work before, still don't work in dotty:
+ //m.map1 { case (k, v) => k }
+ //val r = m.map1 { case (k, v) => (k, k*10) }
+ //val rt: MyMap[Int, Int] = r
+ //m.foo { case (k, v) => k - 1 }
+
+ // Used to be ambiguous but overload resolution now favors PartialFunction
+ def h[R](pf: Function2[Int, String, R]): Unit = ()
+ def h[R](pf: PartialFunction[(Double, Double), R]): Unit = ()
+ h { case (a: Double, b: Double) => 42: Int }
+}