summaryrefslogtreecommitdiff
path: root/test/files/run/t2074_2.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2009-09-25 16:20:13 +0000
committerMartin Odersky <odersky@gmail.com>2009-09-25 16:20:13 +0000
commit4a727f3b01d0fa27ef51f7dba472116e021e3445 (patch)
treec9ab55ea7fe6051455271b23e9fbfc2f313015c0 /test/files/run/t2074_2.scala
parente31f18094dfba97c80871869a037172ff2c9c1c2 (diff)
downloadscala-4a727f3b01d0fa27ef51f7dba472116e021e3445.tar.gz
scala-4a727f3b01d0fa27ef51f7dba472116e021e3445.tar.bz2
scala-4a727f3b01d0fa27ef51f7dba472116e021e3445.zip
Collections refactoring.
Diffstat (limited to 'test/files/run/t2074_2.scala')
-rw-r--r--test/files/run/t2074_2.scala5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/files/run/t2074_2.scala b/test/files/run/t2074_2.scala
index 6aca6c3f60..24fa6c7601 100644
--- a/test/files/run/t2074_2.scala
+++ b/test/files/run/t2074_2.scala
@@ -1,5 +1,5 @@
import scala.collection.immutable.Vector
-import scala.collection.generic.VectorView
+import scala.collection.VectorView
object Test {
val v = new VectorView[Int, Vector[Int]] {
@@ -7,8 +7,11 @@ object Test {
def apply(idx: Int) = underlying(idx)
def length = underlying.length
}
+ val w = Vector(1, 2, 3).view
def main(args: Array[String]): Unit = {
+ println(v)
+ println(w)
println(go)
}
def go = v zip v