aboutsummaryrefslogtreecommitdiff
path: root/tests/run/transform.scala
blob: d73155ceec2a3261d86bac793be851c45072faed (plain) (blame)
1
2
3
4
5
6
7
8
object Test {
  val x = (1 to 10).toBuffer

  def main(args: Array[String]): Unit = {
    x transform (_ * 2)
    assert(x.sum == (1 to 10).sum * 2)
  }
}