summaryrefslogblamecommitdiff
path: root/test/files/run/t498.scala
blob: 5c10e6630f764c5e2b4c2f0e8cb7b2058a37ed40 (plain) (tree)
1
2
3
4
5
6
7
8


                                
                         


                                                                                                        
 
import scala.language.postfixOps

object Test extends App {
// the function passed to flatMap produces lots of empty streams, but this should not overflow the stack
	val res = Stream.from(1).flatMap(i => if (i < 3000) Stream.empty else List(1))
	println(res take 42 force)
}