summaryrefslogtreecommitdiff
path: root/test/files/run/t3996.scala
blob: e6e5549cfa1491402bdc0da7c0e49730a971bbe2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// should not result in a stack overflow
object Test {
  def main(args: Array[String]) {
    import collection.mutable.LinkedList
    val l = new LinkedList[Int]() ++ (0 until 10000)
    assert(l.length == 10000)
  }
}