summaryrefslogtreecommitdiff
path: root/test/files/neg/for-comprehension-old.scala
blob: 10ae363bde7d902469f66393dcbbc284ec91af6a (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           // ok
  for (x <- 1 to 5 ; val y = x) yield x+y       // fail
  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           // ok
  for (z <- 1 to 2 ; x <- 1 to 5 ; val y = x) yield x+y       // fail
  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
}