aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5867.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t5867.scala')
-rw-r--r--tests/pending/run/t5867.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/pending/run/t5867.scala b/tests/pending/run/t5867.scala
new file mode 100644
index 000000000..f7e9393b7
--- /dev/null
+++ b/tests/pending/run/t5867.scala
@@ -0,0 +1,14 @@
+import collection.mutable.UnrolledBuffer
+
+
+
+object Test {
+
+ def main(args: Array[String]) {
+ val buf = UnrolledBuffer(1 to 50: _*)
+ val dub = buf ++ buf
+
+ println(dub)
+ }
+
+}