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






                                                                          
object Test extends App {
  val s: Seq[Int] = Stream.from(1)
  val res0 = s.map(a => 2).head
  val res1 = Stream.from(1).flatMap(a => List(1)).head

  println((for{a <- Stream.from(1); b <- 1 to 5; if a > 10} yield a).head)
  println((for{a <- Stream.from(1); b <- 1 to a; if a > 10} yield a).head)
}