summaryrefslogblamecommitdiff
path: root/test/files/run/t498.scala
blob: 50be317c4cc85c5628c2d58225243178ee2323ce (plain) (tree)
1
2
3
4
5




                                                                                                        
object Test extends Application {
// 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)
}