summaryrefslogtreecommitdiff
path: root/test/files/run/t4190.scala
blob: aa88b8708d7db7cd408db5c4c137ec31a8347d9d (plain) (blame)
1
2
3
4
5
6
import collection.mutable._

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