summaryrefslogtreecommitdiff
path: root/test/files/neg/for-comprehension-old.scala
blob: 476e99808ea0b0d55b6a183ec8098ebff4a4b099 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class A {
  for (x <- 1 to 5 ; y = x) yield x+y           // fail
  for (x <- 1 to 5 ; val y = x) yield x+y       // ok
  for (val x <- 1 to 5 ; y = x) yield x+y       // fail
  for (val x <- 1 to 5 ; val y = x) yield x+y   // fail

  for (z <- 1 to 2 ; x <- 1 to 5 ; y = x) yield x+y           // fail
  for (z <- 1 to 2 ; x <- 1 to 5 ; val y = x) yield x+y       // ok
  for (z <- 1 to 2 ; val x <- 1 to 5 ; y = x) yield x+y       // fail
  for (z <- 1 to 2 ; val x <- 1 to 5 ; val y = x) yield x+y   // fail
}