aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t498.scala
blob: d50d8fd3f3cca8c6d843b4c8e5c39dcbffc0f37a (plain) (tree)
1
2
3
4
5
6
7
8







                                                                                                        
import scala.language.postfixOps

object Test extends dotty.runtime.LegacyApp {
// 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)
}