summaryrefslogtreecommitdiff
path: root/test/files/run/randomAccessSeq-apply.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/randomAccessSeq-apply.scala')
-rw-r--r--test/files/run/randomAccessSeq-apply.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/randomAccessSeq-apply.scala b/test/files/run/randomAccessSeq-apply.scala
index 1f74050bb7..f398ea1536 100644
--- a/test/files/run/randomAccessSeq-apply.scala
+++ b/test/files/run/randomAccessSeq-apply.scala
@@ -1,14 +1,14 @@
object Test extends Application {
val empty = RandomAccessSeq()
assert(empty.isEmpty)
-
+
val single = RandomAccessSeq(1)
assert(List(1) == single.toList)
-
+
val two = RandomAccessSeq("a", "b")
assert("a" == two.head)
assert("b" == two.apply(1))
-
+
println("OK")
}