mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:35:17 +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
|
|
|