summaryrefslogtreecommitdiff
path: root/src/dotnet-library
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotnet-library')
-rw-r--r--src/dotnet-library/scala/List.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotnet-library/scala/List.scala b/src/dotnet-library/scala/List.scala
index 28228cc2f8..dea3a9a255 100644
--- a/src/dotnet-library/scala/List.scala
+++ b/src/dotnet-library/scala/List.scala
@@ -450,7 +450,7 @@ sealed abstract class List[+A] extends Seq[A] {
* @param x the element to append.
* @return the list with <code>x</code> added at the end.
*/
- def +[B >: A](x: B): List[B] =
+ override def +[B >: A](x: B): List[B] =
if (isEmpty) List(x)
else {
val buf = new ListBuffer[B]