summaryrefslogtreecommitdiff
path: root/test/files/run/t2074_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t2074_2.scala')
-rw-r--r--test/files/run/t2074_2.scala11
1 files changed, 6 insertions, 5 deletions
diff --git a/test/files/run/t2074_2.scala b/test/files/run/t2074_2.scala
index 24fa6c7601..7d1d8181d8 100644
--- a/test/files/run/t2074_2.scala
+++ b/test/files/run/t2074_2.scala
@@ -1,13 +1,14 @@
-import scala.collection.immutable.Vector
-import scala.collection.VectorView
+// replaced all occurrences of 'Vector' with 'IndexedSeq'
+import scala.collection.immutable.IndexedSeq
+import scala.collection.IndexedSeqView
object Test {
- val v = new VectorView[Int, Vector[Int]] {
- def underlying = Vector(1,2,3)
+ val v = new IndexedSeqView[Int, IndexedSeq[Int]] {
+ def underlying = IndexedSeq(1,2,3)
def apply(idx: Int) = underlying(idx)
def length = underlying.length
}
- val w = Vector(1, 2, 3).view
+ val w = IndexedSeq(1, 2, 3).view
def main(args: Array[String]): Unit = {
println(v)