summaryrefslogtreecommitdiff
path: root/test/files/pos/t9943.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t9943.scala')
-rw-r--r--test/files/pos/t9943.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/pos/t9943.scala b/test/files/pos/t9943.scala
new file mode 100644
index 0000000000..0d4717ccbb
--- /dev/null
+++ b/test/files/pos/t9943.scala
@@ -0,0 +1,9 @@
+class Foo[T] {
+ def toMap[K, V](implicit ev: Foo[T] <:< Foo[(K, V)]): Foo[Map[K, V]] = null
+ def toMap[K](keySelector: T => K): Foo[Map[K, T]] = null
+}
+
+object Foo {
+ (??? : Foo[Int]) toMap (_ % 2)
+ (??? : Foo[(Int, String)]).toMap
+}