rust/tests/ui/author/matches.stderr
2018-10-06 09:43:08 -07:00

15 lines
418 B
Text

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