aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t4709.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t4709.scala')
-rw-r--r--tests/pending/run/t4709.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/pending/run/t4709.scala b/tests/pending/run/t4709.scala
new file mode 100644
index 000000000..c61a44039
--- /dev/null
+++ b/tests/pending/run/t4709.scala
@@ -0,0 +1,10 @@
+
+
+import collection.GenSeq
+
+
+object Test {
+ def main(args: Array[String]) {
+ val Seq(1, 2) = Stream(1, 2)
+ }
+}