From 7b33fcff437ff18f31b81a61d45a1fcf8ed75d5c Mon Sep 17 00:00:00 2001 From: Geoffrey Washburn Date: Mon, 19 May 2008 12:50:31 +0000 Subject: Deprecate all of the problematic + methods, and... Deprecate all of the problematic + methods, and removed those that never appeared in a release. --- test/files/run/lists.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/files') diff --git a/test/files/run/lists.scala b/test/files/run/lists.scala index fc0fec466e..2d55563f60 100644 --- a/test/files/run/lists.scala +++ b/test/files/run/lists.scala @@ -93,7 +93,7 @@ object Test2 extends TestCase("t0468") with Assert { val xs1 = List(1, 2, 3) val xs2 = List(0) - val ys1 = xs1 + 4 + val ys1 = xs1 ::: List(4) assertEquals("check_+", List(1, 2, 3, 4), ys1) val ys2 = ys1 - 4 -- cgit v1.2.3