From 44ddee59a4264f312b8900e0cfc79c71b999e24c Mon Sep 17 00:00:00 2001 From: Aleksandar Pokopec Date: Wed, 13 Apr 2011 16:32:09 +0000 Subject: Added test case for #4459. No review. --- test/files/run/t4459.scala | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/files/run/t4459.scala (limited to 'test/files/run/t4459.scala') diff --git a/test/files/run/t4459.scala b/test/files/run/t4459.scala new file mode 100644 index 0000000000..8b164f77c8 --- /dev/null +++ b/test/files/run/t4459.scala @@ -0,0 +1,13 @@ +import collection._ + + +object Foo { + def main(args: Array[String]) { + for (i <- 0 until 2000) { + foo((0 until 10000).toSeq.par) + } + } + + def foo(arg: GenSeq[_]): String = arg.map(x => x).mkString(",") +} + -- cgit v1.2.3