summaryrefslogtreecommitdiff
path: root/test/files/run/t2074_2.scala
diff options
context:
space:
mode:
authorTiark Rompf <tiark.rompf@epfl.ch>2009-10-21 21:17:09 +0000
committerTiark Rompf <tiark.rompf@epfl.ch>2009-10-21 21:17:09 +0000
commit991c819cb54c40fbc0553a82bb4450ced648c61d (patch)
treef56e3dcf937a5283ce8ed9a251d3bf1e5de24abc /test/files/run/t2074_2.scala
parent2816f2e6ce51206b3b5bdb1367203bf688625cb6 (diff)
downloadscala-991c819cb54c40fbc0553a82bb4450ced648c61d.tar.gz
scala-991c819cb54c40fbc0553a82bb4450ced648c61d.tar.bz2
scala-991c819cb54c40fbc0553a82bb4450ced648c61d.zip
built new starr and fixed test cases
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)