mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
18 lines
393 B
Plaintext
18 lines
393 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 1 previous error
|
|
|