summaryrefslogtreecommitdiff
path: root/test/files/run/t5201.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5201.scala')
-rw-r--r--test/files/run/t5201.scala5
1 files changed, 5 insertions, 0 deletions
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[_,_]])
+}