aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t3088.scala
blob: ea820b1c9c782a75ed4aa80b7bf6a691d314a280 (plain) (blame)
1
2
3
4
5
6
7
8
9
import collection.mutable._

object Test {
  def main(args: Array[String]): Unit = {
    val b = new ListBuffer[Int]
    b += 1
    b ++= b
  }
}