summaryrefslogblamecommitdiff
path: root/test/files/run/t3996.scala
blob: 1bb12163903ca857f5f76ba976218e96561425cb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                    
object Test {
  def main(args: Array[String]) {
    import collection.mutable.LinkedList
    val l = new LinkedList[Int]() ++ (0 until 10000)
    assert(l.length == 10000)
  }
}