aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t4723.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t4723.scala')
-rw-r--r--tests/pending/run/t4723.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/pending/run/t4723.scala b/tests/pending/run/t4723.scala
new file mode 100644
index 000000000..4278ff9aa
--- /dev/null
+++ b/tests/pending/run/t4723.scala
@@ -0,0 +1,9 @@
+
+
+
+object Test {
+ def main(args: Array[String]) {
+ assert(Nil == collection.parallel.ParSeq())
+ assert(collection.parallel.ParSeq() == Nil)
+ }
+}