rust/tests/ui/let_if_seq.stderr

51 lines
1.4 KiB
Text
Raw Normal View History

error: `if _ { .. } else { .. }` is an expression
2018-10-06 18:18:06 +02:00
--> $DIR/let_if_seq.rs:67:5
|
2018-10-06 18:18:06 +02:00
67 | / let mut foo = 0;
68 | | if f() {
69 | | foo = 42;
70 | | }
2017-07-21 10:40:23 +02:00
| |_____^ 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
2018-10-06 18:18:06 +02:00
--> $DIR/let_if_seq.rs:72:5
|
2018-10-06 18:18:06 +02:00
72 | / let mut bar = 0;
73 | | if f() {
74 | | f();
75 | | bar = 42;
... |
2018-10-06 18:18:06 +02:00
78 | | f();
79 | | }
2017-07-21 10:40:23 +02:00
| |_____^ 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
2018-10-06 18:18:06 +02:00
--> $DIR/let_if_seq.rs:81:5
|
2018-10-06 18:18:06 +02:00
81 | / let quz;
82 | | if f() {
83 | | quz = 42;
84 | | } else {
85 | | quz = 0;
86 | | }
2017-07-21 10:40:23 +02:00
| |_____^ help: it is more idiomatic to write: `let quz = if f() { 42 } else { 0 };`
error: `if _ { .. } else { .. }` is an expression
2018-10-06 18:18:06 +02:00
--> $DIR/let_if_seq.rs:110:5
|
2018-10-06 18:18:06 +02:00
110 | / let mut baz = 0;
111 | | if f() {
112 | | baz = 42;
113 | | }
2017-07-21 10:40:23 +02:00
| |_____^ help: it is more idiomatic to write: `let <mut> baz = if f() { 42 } else { 0 };`
|
= note: you might not need `mut` at all
2018-01-16 17:06:27 +01:00
error: aborting due to 4 previous errors