mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
19 lines
450 B
Plaintext
19 lines
450 B
Plaintext
error: expected `{`, found `}`
|
|
--> $DIR/while-if-let-without-body.rs:11:1
|
|
|
|
|
LL | while if let Some(thing) = container.get(i) {
|
|
| _____-----_-
|
|
| | |
|
|
| | while parsing the body of this `while` expression
|
|
LL | |
|
|
LL | |
|
|
LL | | println!("{:?}", thing);
|
|
LL | | i += 1;
|
|
LL | | }
|
|
| |_____- this `while` condition successfully parsed
|
|
LL | }
|
|
| ^ expected `{`
|
|
|
|
error: aborting due to 1 previous error
|
|
|