38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
28 lines
696 B
Plaintext
28 lines
696 B
Plaintext
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
|
|
|