DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-4 / test / files / run / t3088.scala
123456789
import collection.mutable._ object Test { def main(args: Array[String]): Unit = { val b = new ListBuffer[Int] b += 1 b ++= b } }