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


                                                                                                        
 
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)
}