mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
$ cargo run
|
|
Compiling functions v0.1.0 (file:///projects/functions)
|
|
error: expected expression, found `let` statement
|
|
--> src/main.rs:2:14
|
|
|
|
|
2 | let x = (let y = 6);
|
|
| ^^^
|
|
|
|
error: expected expression, found statement (`let`)
|
|
--> src/main.rs:2:14
|
|
|
|
|
2 | let x = (let y = 6);
|
|
| ^^^^^^^^^
|
|
|
|
|
= note: variable declaration using `let` is a statement
|
|
|
|
error[E0658]: `let` expressions in this position are unstable
|
|
--> src/main.rs:2:14
|
|
|
|
|
2 | let x = (let y = 6);
|
|
| ^^^^^^^^^
|
|
|
|
|
= note: see issue #53667 <https://github.com/rust-lang/rust/issues/53667> for more information
|
|
|
|
warning: unnecessary parentheses around assigned value
|
|
--> src/main.rs:2:13
|
|
|
|
|
2 | let x = (let y = 6);
|
|
| ^ ^
|
|
|
|
|
= note: `#[warn(unused_parens)]` on by default
|
|
help: remove these parentheses
|
|
|
|
|
2 - let x = (let y = 6);
|
|
2 + let x = let y = 6;
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|
|
warning: `functions` (bin "functions") generated 1 warning
|
|
error: could not compile `functions` due to 3 previous errors; 1 warning emitted
|