From 188d69631573ee0f718fce47689e29f16a46ea08 Mon Sep 17 00:00:00 2001 From: Aleksandar Prokopec Date: Tue, 25 Sep 2012 20:02:22 +0200 Subject: SI-6410 add test cases. --- test/files/run/t6410.scala | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/files/run/t6410.scala (limited to 'test/files/run/t6410.scala') diff --git a/test/files/run/t6410.scala b/test/files/run/t6410.scala new file mode 100644 index 0000000000..2a001b47ab --- /dev/null +++ b/test/files/run/t6410.scala @@ -0,0 +1,9 @@ + + + +object Test extends App { + val x = collection.parallel.mutable.ParArray.range(1,10) groupBy { _ % 2 } mapValues { _.size } + println(x) + val y = collection.parallel.immutable.ParVector.range(1,10) groupBy { _ % 2 } mapValues { _.size } + println(y) +} \ No newline at end of file -- cgit v1.2.3