summaryrefslogtreecommitdiff
path: root/test/files/run/t5867.scala
blob: f7e9393b7a8987d7aadd23a39378ddce868861e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import collection.mutable.UnrolledBuffer



object Test {

  def main(args: Array[String]) {
    val buf = UnrolledBuffer(1 to 50: _*)
    val dub = buf ++ buf

    println(dub)
  }

}