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, 0 insertions, 13 deletions
diff --git a/tests/pending/pos/t6014.scala b/tests/pending/pos/t6014.scala
deleted file mode 100644
index 26e258a27..000000000
--- a/tests/pending/pos/t6014.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-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
-}