2017-02-07 20:05:30 +00:00
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
2021-04-08 15:50:13 +00:00
|
|
|
--> $DIR/let_if_seq.rs:65:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / let mut foo = 0;
|
|
|
|
LL | | if f() {
|
|
|
|
LL | | foo = 42;
|
|
|
|
LL | | }
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_____^ help: it is more idiomatic to write: `let <mut> foo = if f() { 42 } else { 0 };`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::useless-let-if-seq` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
= note: you might not need `mut` at all
|
|
|
|
|
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
2021-04-08 15:50:13 +00:00
|
|
|
--> $DIR/let_if_seq.rs:70:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / let mut bar = 0;
|
|
|
|
LL | | if f() {
|
|
|
|
LL | | f();
|
|
|
|
LL | | bar = 42;
|
|
|
|
LL | | } else {
|
|
|
|
LL | | f();
|
|
|
|
LL | | }
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_____^ help: it is more idiomatic to write: `let <mut> bar = if f() { ..; 42 } else { ..; 0 };`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
|
= note: you might not need `mut` at all
|
|
|
|
|
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
2021-04-08 15:50:13 +00:00
|
|
|
--> $DIR/let_if_seq.rs:78:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / let quz;
|
|
|
|
LL | | if f() {
|
|
|
|
LL | | quz = 42;
|
|
|
|
LL | | } else {
|
|
|
|
LL | | quz = 0;
|
|
|
|
LL | | }
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_____^ help: it is more idiomatic to write: `let quz = if f() { 42 } else { 0 };`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: `if _ { .. } else { .. }` is an expression
|
2021-04-08 15:50:13 +00:00
|
|
|
--> $DIR/let_if_seq.rs:107:5
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | / let mut baz = 0;
|
|
|
|
LL | | if f() {
|
|
|
|
LL | | baz = 42;
|
|
|
|
LL | | }
|
|
|
|
| |_____^ help: it is more idiomatic to write: `let <mut> baz = if f() { 42 } else { 0 };`
|
|
|
|
|
|
|
|
|
= note: you might not need `mut` at all
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|