summaryrefslogblamecommitdiff
path: root/test/files/run/t408.scala
blob: 4d3dcbcb846028b2fd0f6a3443b574f9e00ca182 (plain) (tree)
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
  }
}