summaryrefslogtreecommitdiff
path: root/test/files/run/t2074_2.scala
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2009-06-30 11:08:44 +0000
committerPhilipp Haller <hallerp@gmail.com>2009-06-30 11:08:44 +0000
commit211fcd601e09e44f5b308f698634b04c6c806eef (patch)
treef79e7c13a0e740a04ebed3f1f955ddc01c5e53bf /test/files/run/t2074_2.scala
parent0464a24e406a636aecd517c1a1af9056f60efac0 (diff)
downloadscala-211fcd601e09e44f5b308f698634b04c6c806eef.tar.gz
scala-211fcd601e09e44f5b308f698634b04c6c806eef.tar.bz2
scala-211fcd601e09e44f5b308f698634b04c6c806eef.zip
Applied patches to fix the issues in #2074.
Diffstat (limited to 'test/files/run/t2074_2.scala')
-rw-r--r--test/files/run/t2074_2.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/t2074_2.scala b/test/files/run/t2074_2.scala
new file mode 100644
index 0000000000..6aca6c3f60
--- /dev/null
+++ b/test/files/run/t2074_2.scala
@@ -0,0 +1,15 @@
+import scala.collection.immutable.Vector
+import scala.collection.generic.VectorView
+
+object Test {
+ val v = new VectorView[Int, Vector[Int]] {
+ def underlying = Vector(1,2,3)
+ def apply(idx: Int) = underlying(idx)
+ def length = underlying.length
+ }
+
+ def main(args: Array[String]): Unit = {
+ println(go)
+ }
+ def go = v zip v
+}