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.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/randomAccessSeq-apply.scala b/test/files/run/randomAccessSeq-apply.scala
index 863a4d42a2..1f74050bb7 100644
--- a/test/files/run/randomAccessSeq-apply.scala
+++ b/test/files/run/randomAccessSeq-apply.scala
@@ -6,7 +6,7 @@ object Test extends Application {
assert(List(1) == single.toList)
val two = RandomAccessSeq("a", "b")
- assert("a" == two.first)
+ assert("a" == two.head)
assert("b" == two.apply(1))
println("OK")