From 135b7255b3e90117cca9d046a89ef779adbef783 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Sun, 4 Oct 2015 10:33:54 +0200 Subject: Add ArrayBuffer as another Seq class. Make iterators inspectable. --- tests/run/CollectionTests.check | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'tests/run/CollectionTests.check') diff --git a/tests/run/CollectionTests.check b/tests/run/CollectionTests.check index 3afe62813..7c4f6e77a 100644 --- a/tests/run/CollectionTests.check +++ b/tests/run/CollectionTests.check @@ -21,6 +21,23 @@ Cons(3,Cons(2,Cons(1,Nil))) 1 1 Cons(1,Cons(2,Cons(3,Nil))) +Array(2) +Array(1, 3) +Array(3) +Array(true, true, true) +Array(1, -1, 2, -2, 3, -3) +Array(1, 2, 3, 1, 2, 3) +Array(1, 2, 3) +Cons(1,Cons(2,Cons(3,Nil))) +Array(1, 2, 3, a) +Array((1,true), (2,true), (3,true)) +Array(3, 2, 1) +------- +123 +123 +1 +1 +Cons(1,Cons(2,Cons(3,Nil))) Cons(2,Nil) Cons(1,Cons(3,Nil)) Cons(3,Nil) -- cgit v1.2.3