aboutsummaryrefslogtreecommitdiff
path: root/tests/run/CollectionTests.check
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-10-04 10:33:54 +0200
committerMartin Odersky <odersky@gmail.com>2015-10-06 13:54:36 +0200
commit135b7255b3e90117cca9d046a89ef779adbef783 (patch)
tree7b678a9a30aa9ef682fb4c301e0f3cad7991115a /tests/run/CollectionTests.check
parent868ae2acb4ef66fa6c32b45e10ba9940ba7340ad (diff)
downloaddotty-135b7255b3e90117cca9d046a89ef779adbef783.tar.gz
dotty-135b7255b3e90117cca9d046a89ef779adbef783.tar.bz2
dotty-135b7255b3e90117cca9d046a89ef779adbef783.zip
Add ArrayBuffer as another Seq class. Make iterators inspectable.
Diffstat (limited to 'tests/run/CollectionTests.check')
-rw-r--r--tests/run/CollectionTests.check17
1 files changed, 17 insertions, 0 deletions
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)