summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/run/t5201.check1
-rw-r--r--test/files/run/t5201.scala5
2 files changed, 6 insertions, 0 deletions
diff --git a/test/files/run/t5201.check b/test/files/run/t5201.check
new file mode 100644
index 0000000000..27ba77ddaf
--- /dev/null
+++ b/test/files/run/t5201.check
@@ -0,0 +1 @@
+true
diff --git a/test/files/run/t5201.scala b/test/files/run/t5201.scala
new file mode 100644
index 0000000000..a371082797
--- /dev/null
+++ b/test/files/run/t5201.scala
@@ -0,0 +1,5 @@
+object Test extends App {
+ val seq = Seq(Seq(1, 2), Seq(3, 4)).view.flatten
+
+ Console.println(seq.isInstanceOf[collection.SeqView[_,_]])
+}