summaryrefslogtreecommitdiff
path: root/test/files/pos/collectGenericCC.scala
diff options
context:
space:
mode:
authorTiark Rompf <tiark.rompf@epfl.ch>2009-10-30 07:51:23 +0000
committerTiark Rompf <tiark.rompf@epfl.ch>2009-10-30 07:51:23 +0000
commit6f7723bea494da2616edc1877d2402d356787512 (patch)
tree071153dbb7d28cfcdf4c9cc69d8a1f41593fcfcd /test/files/pos/collectGenericCC.scala
parent6ae7f2cbc183d57ba7d00fe790889f359c7b3a11 (diff)
downloadscala-6f7723bea494da2616edc1877d2402d356787512.tar.gz
scala-6f7723bea494da2616edc1877d2402d356787512.tar.bz2
scala-6f7723bea494da2616edc1877d2402d356787512.zip
separated Vector impl from IndexedSeq
Diffstat (limited to 'test/files/pos/collectGenericCC.scala')
-rw-r--r--test/files/pos/collectGenericCC.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/collectGenericCC.scala b/test/files/pos/collectGenericCC.scala
index 0195993154..9840f1071d 100644
--- a/test/files/pos/collectGenericCC.scala
+++ b/test/files/pos/collectGenericCC.scala
@@ -8,7 +8,7 @@ object Test {
b.result
}
- collect[Int, IndexedSeq[Int]](List(1,2,3,4))
+ collect[Int, Vector[Int]](List(1,2,3,4))
collect[Char, String](List('1','2','3','4'))
collect[Char, Array[Char]](List('1','2','3','4'))
} \ No newline at end of file