2018-05-11 12:05:34 -05:00
|
|
|
error: returning the result of a let binding from a block. Consider returning the expression directly.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/matches.rs:19:13
|
|
|
|
|
|
|
|
|
19 | x
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::let-and-return` implied by `-D warnings`
|
2018-05-11 12:05:34 -05:00
|
|
|
note: this expression can be directly returned
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/matches.rs:18:21
|
|
|
|
|
|
|
|
|
18 | let x = 3;
|
|
|
|
| ^
|
2018-05-11 12:05:34 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|