aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t5867.scala
blob: c7f5d0a41a399f12e639c2107864092c6312ab43 (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]): Unit = {
    val buf = UnrolledBuffer(1 to 50: _*)
    val dub = buf ++ buf

    println(dub)
  }

}