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.
|
|
|
$ 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);
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= note: only supported directly in conditions of `if` and `while` expressions
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
|
|
|
warning: `functions` (bin "functions") generated 1 warning
|
|
|
|
error: could not compile `functions` (bin "functions") due to 1 previous error; 1 warning emitted
|