summaryrefslogtreecommitdiff
path: root/test/files/run/t4459.scala
blob: 8b164f77c8b107b276fd36d4f174f0e06160de92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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(",")
}