aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t4553.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t4553.scala')
-rw-r--r--tests/pending/pos/t4553.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/pending/pos/t4553.scala b/tests/pending/pos/t4553.scala
deleted file mode 100644
index e9bef4099..000000000
--- a/tests/pending/pos/t4553.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-trait VectorLike[+T, +V[A] <: Vector[A]] {
- def +[S, VResult[S] >: V[S]](v: VResult[S]): Unit
-}
-
-trait Vector[+T] extends VectorLike[T, Vector]
-trait ImmutableVector[T] extends Vector[T] with VectorLike[T, ImmutableVector]
-trait MutableVector[T] extends Vector[T] with VectorLike[T, MutableVector]
-
-object Test {
- def f = (null: MutableVector[Int]) + (null: ImmutableVector[Int])
-}