blob: 74d070dc4b28a663e085acf9f409503a0bffee54 [file] [log] [blame]
error: returning the result of a let binding from a block
--> $DIR/matches.rs:9:13
|
LL | let x = 3;
| ---------- unnecessary let binding
LL | x
| ^
|
= note: `-D clippy::let-and-return` implied by `-D warnings`
help: return the expression directly
|
LL |
LL | 3
|
error: aborting due to previous error