aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t4190.scala
blob: 0c91d62de4db8ec35d752df76e6715b07985f2d6 (plain) (tree)
1
2
3
4
5
6





                                                         
import collection.mutable._

object  Test extends dotty.runtime.LegacyApp {
  val x: ArrayBuffer[String] = ArrayBuffer("a", "b", "c")
  x.view map (_ + "0") foreach println
}