blob: 22432a18bbb8e3780f343d1a321db9fa2647484d [file] [log] [blame]
error: `for...else` loops are not supported
--> $DIR/for-else-let-else-err.rs:4:7
|
LL | let _ = for _ in 0..1 {
| --- `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