blob: 69c4720c9b3fe9839a811b7da8ebc94fe9f5a2cb [file] [log] [blame]
error: returning the result of a let binding from a block. Consider returning the expression directly.
--> $DIR/let_return.rs:7:5
|
LL | x
| ^
|
= note: `-D clippy::let-and-return` implied by `-D warnings`
note: this expression can be directly returned
--> $DIR/let_return.rs:6:13
|
LL | let x = 5;
| ^
error: returning the result of a let binding from a block. Consider returning the expression directly.
--> $DIR/let_return.rs:13:9
|
LL | x
| ^
|
note: this expression can be directly returned
--> $DIR/let_return.rs:12:17
|
LL | let x = 5;
| ^
error: aborting due to 2 previous errors