summaryrefslogtreecommitdiff
path: root/test/files/run/viewtest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/viewtest.scala')
-rwxr-xr-xtest/files/run/viewtest.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/viewtest.scala b/test/files/run/viewtest.scala
index 0f00536c1c..280ded57cf 100755
--- a/test/files/run/viewtest.scala
+++ b/test/files/run/viewtest.scala
@@ -13,7 +13,7 @@ object Test extends Application {
println(ys.force)
val zs = Array(1, 2, 3).view
- val as: VectorView[Int, Array[Int]] = zs map (_ + 1)
+ val as: IndexedSeqView[Int, Array[Int]] = zs map (_ + 1)
val bs: Array[Int] = as.force
val cs = zs.reverse
cs(0) += 1