2017-02-07 14:05:30 -06:00
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/let_if_seq.rs:57:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-04-23 08:25:22 -05:00
|
|
|
57 | / let mut foo = 0;
|
2017-05-11 06:37:32 -05:00
|
|
|
58 | | if f() {
|
|
|
|
59 | | foo = 42;
|
|
|
|
60 | | }
|
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
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/let_if_seq.rs:62:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 06:37:32 -05:00
|
|
|
62 | / let mut bar = 0;
|
|
|
|
63 | | if f() {
|
|
|
|
64 | | f();
|
|
|
|
65 | | bar = 42;
|
2017-04-10 08:36:07 -05:00
|
|
|
... |
|
2017-05-11 06:37:32 -05:00
|
|
|
68 | | f();
|
|
|
|
69 | | }
|
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
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/let_if_seq.rs:71:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 06:37:32 -05:00
|
|
|
71 | / let quz;
|
|
|
|
72 | | if f() {
|
|
|
|
73 | | quz = 42;
|
|
|
|
74 | | } else {
|
|
|
|
75 | | quz = 0;
|
|
|
|
76 | | }
|
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
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/let_if_seq.rs:100:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 06:37:32 -05:00
|
|
|
100 | / let mut baz = 0;
|
|
|
|
101 | | if f() {
|
|
|
|
102 | | baz = 42;
|
|
|
|
103 | | }
|
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
|
|
|
|
|