about summary refs log tree commit diff
path: root/tests/ui/while/while-else-err.stderr
blob: face0c7392541e46997abea0f6b76b687ec3b370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: `while...else` loops are not supported
  --> $DIR/while-else-err.rs:4:7
   |
LL |       while false {
   |       ----- `else` is attached to this loop
LL |
LL |       } else {
   |  _______^
...  |
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 1 previous error