aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t3645.scala
blob: cada14cd14881d6004f3cd70f2ea4a68440efbcd (plain) (blame)
1
2
3
4
5
6
object Test {
  def main(args: Array[String]): Unit = {
    val s = Stream.tabulate(5)(x => x+2)
    assert( s.toList == List(2,3,4,5,6) )
  }
}