summaryrefslogtreecommitdiff
path: root/test/files/run/transform.scala
blob: 250df95df0165df0200aa72ca672f6d7be43335d (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)
  }
}