aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t4459.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/t4459.scala')
-rw-r--r--tests/run/t4459.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/run/t4459.scala b/tests/run/t4459.scala
deleted file mode 100644
index ea3b7420b..000000000
--- a/tests/run/t4459.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-import collection._
-
-object Test {
- def main(args: Array[String]): Unit = {
- for (i <- 0 until 2000) {
- foo((0 until 10000).toSeq.par)
- }
- }
-
- def foo(arg: GenSeq[_]): String = arg.map(x => x).mkString(",")
-}
-