summaryrefslogtreecommitdiff
path: root/test/files/run/t5867.scala
blob: 6a86ac3e6d1f0519959093e87e4429bce1bcd2b6 (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)
  }
  
}