blob: 6ee77fb47af33492dc1f9d3f5c830f731439b96c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
error: `loop...else` loops are not supported
--> $DIR/loop-else-let-else-err.rs:4:7
|
LL | let _ = loop {
| ---- `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 1 previous error
|