From d5b02c8652d7edbdfb0b5a02570d370d3bad299f Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Mon, 21 Sep 2009 12:50:04 +0000 Subject: new arrays are done. --- test/files/run/arrays.scala | 7 ------- 1 file changed, 7 deletions(-) (limited to 'test/files/run/arrays.scala') diff --git a/test/files/run/arrays.scala b/test/files/run/arrays.scala index a58caded00..9b2491e383 100644 --- a/test/files/run/arrays.scala +++ b/test/files/run/arrays.scala @@ -348,13 +348,6 @@ object Test { val x1 = Array.concat(Array(1, 2), Array(3, 4)) val y1 = Array(1, 2, 3, 4) check(x1 sameElements y1, x1.toList, y1.toList) - - val x2 = Array.concat(List(1, 2), List(3, 4)) - check(x2 sameElements y1, x2.toList, y1.toList) - - val x3 = Array.concat(aaa, xxx) - val y3 = aaaxxx; - check(x3 sameElements y3, x3.toList, y3.toList) } //########################################################################## -- cgit v1.2.3