mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 08:57:30 +00:00
50 lines
1.4 KiB
Text
50 lines
1.4 KiB
Text
error: `if _ { .. } else { .. }` is an expression
|
|
--> $DIR/let_if_seq.rs:67:5
|
|
|
|
|
67 | / let mut foo = 0;
|
|
68 | | if f() {
|
|
69 | | foo = 42;
|
|
70 | | }
|
|
| |_____^ help: it is more idiomatic to write: `let <mut> foo = if f() { 42 } else { 0 };`
|
|
|
|
|
= note: `-D clippy::useless-let-if-seq` implied by `-D warnings`
|
|
= note: you might not need `mut` at all
|
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
|
--> $DIR/let_if_seq.rs:72:5
|
|
|
|
|
72 | / let mut bar = 0;
|
|
73 | | if f() {
|
|
74 | | f();
|
|
75 | | bar = 42;
|
|
... |
|
|
78 | | f();
|
|
79 | | }
|
|
| |_____^ help: it is more idiomatic to write: `let <mut> bar = if f() { ..; 42 } else { ..; 0 };`
|
|
|
|
|
= note: you might not need `mut` at all
|
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
|
--> $DIR/let_if_seq.rs:81:5
|
|
|
|
|
81 | / let quz;
|
|
82 | | if f() {
|
|
83 | | quz = 42;
|
|
84 | | } else {
|
|
85 | | quz = 0;
|
|
86 | | }
|
|
| |_____^ help: it is more idiomatic to write: `let quz = if f() { 42 } else { 0 };`
|
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
|
--> $DIR/let_if_seq.rs:110:5
|
|
|
|
|
110 | / let mut baz = 0;
|
|
111 | | if f() {
|
|
112 | | baz = 42;
|
|
113 | | }
|
|
| |_____^ help: it is more idiomatic to write: `let <mut> baz = if f() { 42 } else { 0 };`
|
|
|
|
|
= note: you might not need `mut` at all
|
|
|
|
error: aborting due to 4 previous errors
|
|
|