2017-02-07 14:05:30 -06:00
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/let_if_seq.rs:67:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
67 | / let mut foo = 0;
|
|
|
|
68 | | if f() {
|
|
|
|
69 | | foo = 42;
|
|
|
|
70 | | }
|
2017-07-21 03:40:23 -05:00
|
|
|
| |_____^ help: it is more idiomatic to write: `let <mut> foo = if f() { 42 } else { 0 };`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::useless-let-if-seq` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
= note: you might not need `mut` at all
|
|
|
|
|
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/let_if_seq.rs:72:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
72 | / let mut bar = 0;
|
|
|
|
73 | | if f() {
|
|
|
|
74 | | f();
|
|
|
|
75 | | bar = 42;
|
2017-04-10 08:36:07 -05:00
|
|
|
... |
|
2018-10-06 11:18:06 -05:00
|
|
|
78 | | f();
|
|
|
|
79 | | }
|
2017-07-21 03:40:23 -05:00
|
|
|
| |_____^ help: it is more idiomatic to write: `let <mut> bar = if f() { ..; 42 } else { ..; 0 };`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
= note: you might not need `mut` at all
|
|
|
|
|
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/let_if_seq.rs:81:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
81 | / let quz;
|
|
|
|
82 | | if f() {
|
|
|
|
83 | | quz = 42;
|
|
|
|
84 | | } else {
|
|
|
|
85 | | quz = 0;
|
|
|
|
86 | | }
|
2017-07-21 03:40:23 -05:00
|
|
|
| |_____^ help: it is more idiomatic to write: `let quz = if f() { 42 } else { 0 };`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/let_if_seq.rs:110:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
110 | / let mut baz = 0;
|
|
|
|
111 | | if f() {
|
|
|
|
112 | | baz = 42;
|
|
|
|
113 | | }
|
2017-07-21 03:40:23 -05:00
|
|
|
| |_____^ help: it is more idiomatic to write: `let <mut> baz = if f() { 42 } else { 0 };`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
= note: you might not need `mut` at all
|
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|