summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2011-07-11 15:17:39 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2011-07-11 15:17:39 +0000
commit3f2a92765e50f08daed0b310d058a37463e1622f (patch)
tree16bb37ce903a298eabc625f7b66d58f4e6eb1073 /test
parent4b616e2ff3b7484d5d59244463ec1e3844db0c11 (diff)
downloadscala-3f2a92765e50f08daed0b310d058a37463e1622f.tar.gz
scala-3f2a92765e50f08daed0b310d058a37463e1622f.tar.bz2
scala-3f2a92765e50f08daed0b310d058a37463e1622f.zip
Fixes #4709.
Review by extempore.
Diffstat (limited to 'test')
-rw-r--r--test/files/run/t4709.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/run/t4709.scala b/test/files/run/t4709.scala
new file mode 100644
index 0000000000..c61a440397
--- /dev/null
+++ b/test/files/run/t4709.scala
@@ -0,0 +1,10 @@
+
+
+import collection.GenSeq
+
+
+object Test {
+ def main(args: Array[String]) {
+ val Seq(1, 2) = Stream(1, 2)
+ }
+}