summaryrefslogtreecommitdiff
path: root/test/files/run/t5656.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5656.scala')
-rw-r--r--test/files/run/t5656.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/run/t5656.scala b/test/files/run/t5656.scala
new file mode 100644
index 0000000000..f5ea147a4e
--- /dev/null
+++ b/test/files/run/t5656.scala
@@ -0,0 +1,11 @@
+
+
+
+
+object Test {
+
+ def main(args: Array[String]) {
+ println(Seq(List('1', '2', '3'), List('a', 'b', 'c')).view.addString(new StringBuilder, "_"))
+ }
+
+}