aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t408.scala
blob: 9e51e881edb0786c354e1a69b571455e88927278 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
object Test
{
  val a = scala.collection.immutable.Set.empty ++ (0 to 100000)
  val b = scala.collection.immutable.Set.empty ++ (0 to 100000)

  def main(args: Array[String]): Unit = {
    a -- b
    a -- b
    a -- b
    a -- b
  }
}