mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
18 lines
404 B
Plaintext
18 lines
404 B
Plaintext
error: `loop...else` loops are not supported
|
|
--> $DIR/loop-else-err.rs:4:7
|
|
|
|
|
LL | 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
|
|
|