mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
18 lines
448 B
Text
18 lines
448 B
Text
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
|
|
|