summaryrefslogtreecommitdiffstats
path: root/tests/ui/for/for-else-err.stderr
blob: b330d1076476921c7a7fa7e1aa87dc8b8d13ba7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: `for...else` loops are not supported
  --> $DIR/for-else-err.rs:4:7
   |
LL |       for _ in 0..1 {
   |       --- `else` is attached to this loop
LL |
LL |       } else {
   |  _______^
LL | |
LL | |
LL | |     }
   | |_____^
   |
   = note: consider moving this `else` clause to a separate `if` statement and use a `bool` variable to control if it should run

error: aborting due to previous error