summaryrefslogblamecommitdiff
path: root/test/files/run/t3516.scala
blob: 82a97f27deec285ceb3c221283134865176d86ef (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13


                                                                  
  








                                                                                  
object Test {
  def mkIterator = (1 to 5).iterator map (x => { println(x) ; x })
  def mkInfinite = Iterator continually { println(1) ; 1 }
  
  def main(args: Array[String]): Unit = {
    // Stream is strict in its head so we should see 1 from each of them.
    val s1 = mkIterator.toStream
    val s2 = mkInfinite.toStream
    // back and forth without slipping into nontermination.
    println((Stream from 1).toIterator.drop(10).toStream.drop(10).toIterator.next)
    ()
  }
}