summaryrefslogblamecommitdiff
path: root/test/files/run/transform.scala
blob: 5cc1c49d6feadf95921deefe09cffbc4e58b9dc0 (plain) (tree)
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)
  }
}