mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
448 B
Plaintext
19 lines
448 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 previous error
|
|
|