summaryrefslogtreecommitdiff
path: root/test/files/run/t1524.scala
blob: 8a1fb7d5c04f4c4c69a7b50bf5212edfc47c9885 (plain) (blame)
1
2
3
4
5
6
7
object Test extends App {

  val buf = new scala.collection.mutable.ArrayBuffer[String](0)
  buf += "initial"
  buf += "second"
  println(buf.head)
}