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/colltest1.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/files/run/colltest1.scala') diff --git a/test/files/run/colltest1.scala b/test/files/run/colltest1.scala index a918546be2..b407e776a4 100755 --- a/test/files/run/colltest1.scala +++ b/test/files/run/colltest1.scala @@ -31,7 +31,7 @@ object Test extends Application { assert(o.size == e.size) val gs = ten groupBy (x => x / 4) val vs1 = (for (k <- gs.keysIterator; v <- gs(k).toIterable.iterator) yield v).toList - val vs2 = Traversable.traversableTraversableWrapper[List[Traversable[Int]], Int](gs.values.toList).flatten + val vs2 = gs.values.toList.flatten // val vs2 = gs.values.toList flatMap (xs => xs) assert(ten.head == 1) assert(ten.tail.head == 2) -- cgit v1.2.3