aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/long-running/t4459.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/long-running/t4459.scala')
-rw-r--r--tests/disabled/long-running/t4459.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/disabled/long-running/t4459.scala b/tests/disabled/long-running/t4459.scala
new file mode 100644
index 000000000..ea3b7420b
--- /dev/null
+++ b/tests/disabled/long-running/t4459.scala
@@ -0,0 +1,12 @@
+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(",")
+}
+