mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
27 lines
694 B
Plaintext
27 lines
694 B
Plaintext
error: expected `;`, found `println`
|
|
--> $DIR/issue-87197-missing-semicolon.rs:6:16
|
|
|
|
|
LL | let x = 100
|
|
| ^ help: add `;` here
|
|
LL | println!("{}", x)
|
|
| ------- unexpected token
|
|
|
|
error: expected `;`, found keyword `let`
|
|
--> $DIR/issue-87197-missing-semicolon.rs:7:22
|
|
|
|
|
LL | println!("{}", x)
|
|
| ^ help: add `;` here
|
|
LL | let y = 200
|
|
| --- unexpected token
|
|
|
|
error: expected `;`, found `println`
|
|
--> $DIR/issue-87197-missing-semicolon.rs:8:16
|
|
|
|
|
LL | let y = 200
|
|
| ^ help: add `;` here
|
|
LL | println!("{}", y);
|
|
| ------- unexpected token
|
|
|
|
error: aborting due to 3 previous errors
|
|
|