summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorAleksandar Prokopec <axel22@gmail.com>2012-07-18 11:41:03 +0200
committerAleksandar Prokopec <axel22@gmail.com>2012-07-18 11:41:03 +0200
commitd8fbd9a54d7c7e923df4978d6368951d55360e3e (patch)
treed8e25a6929f270237bb6df711b53d566d0eb372b /test/files/run
parent4f07a12b3f4ce1595d4976123e5cfe34e186d4ba (diff)
downloadscala-d8fbd9a54d7c7e923df4978d6368951d55360e3e.tar.gz
scala-d8fbd9a54d7c7e923df4978d6368951d55360e3e.tar.bz2
scala-d8fbd9a54d7c7e923df4978d6368951d55360e3e.zip
Fix SI-5937.
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/t5937.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/run/t5937.scala b/test/files/run/t5937.scala
new file mode 100644
index 0000000000..e5bf6617af
--- /dev/null
+++ b/test/files/run/t5937.scala
@@ -0,0 +1,12 @@
+
+
+
+import collection._
+
+
+
+object Test extends App {
+
+ val list: List[Int] = (immutable.Vector(1, 2, 3) :+ 4)(breakOut)
+
+}