mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
391 B
Plaintext
18 lines
391 B
Plaintext
error: conditional `else if` is not supported for `let...else`
|
|
--> $DIR/let-else-if.rs:2:33
|
|
|
|
|
LL | let Some(_) = Some(()) else if true {
|
|
| ^^ expected `{`
|
|
|
|
|
help: try placing this code inside a block
|
|
|
|
|
LL ~ let Some(_) = Some(()) else { if true {
|
|
LL |
|
|
...
|
|
LL | return;
|
|
LL ~ } };
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|