aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t4553.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t4553.scala')
-rwxr-xr-xtests/untried/pos/t4553.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/untried/pos/t4553.scala b/tests/untried/pos/t4553.scala
index 4eefe57b2..e9bef4099 100755
--- a/tests/untried/pos/t4553.scala
+++ b/tests/untried/pos/t4553.scala
@@ -1,5 +1,5 @@
trait VectorLike[+T, +V[A] <: Vector[A]] {
- def +[S, VResult[S] >: V[S]](v: VResult[S])
+ def +[S, VResult[S] >: V[S]](v: VResult[S]): Unit
}
trait Vector[+T] extends VectorLike[T, Vector]