mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
382 B
Plaintext
19 lines
382 B
Plaintext
error: expected `;`, found keyword `let`
|
|
--> $DIR/let-else-missing-semicolon.rs:4:6
|
|
|
|
|
LL | }
|
|
| ^ help: add `;` here
|
|
LL | let _ = "";
|
|
| --- unexpected token
|
|
|
|
error: expected `;`, found `}`
|
|
--> $DIR/let-else-missing-semicolon.rs:8:6
|
|
|
|
|
LL | }
|
|
| ^ help: add `;` here
|
|
LL | }
|
|
| - unexpected token
|
|
|
|
error: aborting due to 2 previous errors
|
|
|