summaryrefslogtreecommitdiff
path: root/test/files/run/t8955.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t8955.scala')
-rw-r--r--test/files/run/t8955.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/run/t8955.scala b/test/files/run/t8955.scala
new file mode 100644
index 0000000000..afa31aa5d7
--- /dev/null
+++ b/test/files/run/t8955.scala
@@ -0,0 +1,12 @@
+import scala.collection.parallel.immutable.ParSet
+
+object Test {
+ def main(args: Array[String]): Unit = {
+ for (i <- 1 to 2000) test()
+ }
+
+ def test() {
+ ParSet[Int]((1 to 10000): _*) foreach (x => ()) // hangs non deterministically
+ }
+}
+