mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
18 lines
408 B
Plaintext
18 lines
408 B
Plaintext
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
|
|
|