aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t6014.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t6014.scala')
-rw-r--r--tests/pending/pos/t6014.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/pending/pos/t6014.scala b/tests/pending/pos/t6014.scala
new file mode 100644
index 000000000..26e258a27
--- /dev/null
+++ b/tests/pending/pos/t6014.scala
@@ -0,0 +1,13 @@
+object Test {
+ case class CC[T](key: T)
+ type Alias[T] = Seq[CC[T]]
+
+ def f(xs: Seq[CC[_]]) = xs map { case CC(x) => CC(x) } // ok
+ def g(xs: Alias[_]) = xs map { case CC(x) => CC(x) } // fails
+ // ./a.scala:11: error: missing parameter type for expanded function
+ // The argument types of an anonymous function must be fully known. (SLS 8.5)
+ // Expected type was: ?
+ // def g(xs: Alias[_]) = xs map { case CC(x) => CC(x) } // fails
+ // ^
+ // one error found
+}