aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t1048.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t1048.scala')
-rw-r--r--tests/untried/pos/t1048.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/untried/pos/t1048.scala b/tests/untried/pos/t1048.scala
deleted file mode 100644
index cd16db5b6..000000000
--- a/tests/untried/pos/t1048.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-trait T[U] {
- def x: T[V] forSome { type V <: U }
-}
-
-object T {
- def unapply[U](t: T[U]): Option[T[V] forSome { type V <: U }] = Some(t.x)
-}
-
-object Test {
- def f[W](t: T[W]) = t match {
- case T(T(_)) => ()
- }
-}
-