From a04195e63727872f04ad01900a18f6ca9ec5cf2b Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Thu, 27 Aug 2009 14:45:35 +0000 Subject: added manifests to most parts of standard libra... added manifests to most parts of standard library which deal with arrays. One test is temporarily disabled, as it shows a deep problem with multi-dimensional arrays (which was present all along). --- test/files/run/bug1300.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/files/run/bug1300.scala') diff --git a/test/files/run/bug1300.scala b/test/files/run/bug1300.scala index 3d26c0f4da..1a759f4e1e 100644 --- a/test/files/run/bug1300.scala +++ b/test/files/run/bug1300.scala @@ -1,6 +1,7 @@ object Test extends Application { val a1 = Array(0,1,2,3).toArray[Any] +// val a1 = x1.toArray[Any] val a2 = Array('a','b','c','d').toArray[Any] val a3 = Array("e","f","g","h").toArray[Any] @@ -9,4 +10,4 @@ object Test extends Application Array.copy(a2, 0, a1, 0, 4) println(a1.mkString + a2.mkString + a3.mkString) -} \ No newline at end of file +} -- cgit v1.2.3