mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
17 lines
433 B
Plaintext
17 lines
433 B
Plaintext
error: `while...else` loops are not supported
|
|
--> $DIR/while-else-let-else-err.rs:4:7
|
|
|
|
|
LL | let _ = 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
|
|
|