summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-05-19 12:50:31 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-05-19 12:50:31 +0000
commit7b33fcff437ff18f31b81a61d45a1fcf8ed75d5c (patch)
treeeea6f44906d27fd2aa74ba8cb1dd64c3b904501a /test
parent639ce2f29dfded08e27d5e909b85b653a1567e51 (diff)
downloadscala-7b33fcff437ff18f31b81a61d45a1fcf8ed75d5c.tar.gz
scala-7b33fcff437ff18f31b81a61d45a1fcf8ed75d5c.tar.bz2
scala-7b33fcff437ff18f31b81a61d45a1fcf8ed75d5c.zip
Deprecate all of the problematic + methods, and...
Deprecate all of the problematic + methods, and removed those that never appeared in a release.
Diffstat (limited to 'test')
-rw-r--r--test/files/run/lists.scala2
1 files changed, 1 insertions, 1 deletions
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