rust/tests/ui/let_if_seq.stderr

57 lines
1.5 KiB
Plaintext
Raw Normal View History

error: `if _ { .. } else { .. }` is an expression
--> $DIR/let_if_seq.rs:66:5
|
2018-12-27 09:57:55 -06:00
LL | / let mut foo = 0;
LL | |
LL | |
2018-12-27 09:57:55 -06:00
LL | | if f() {
LL | | foo = 42;
LL | | }
2017-07-21 03:40:23 -05:00
| |_____^ help: it is more idiomatic to write: `let <mut> foo = if f() { 42 } else { 0 };`
|
= note: you might not need `mut` at all
2022-09-22 11:04:22 -05:00
= note: `-D clippy::useless-let-if-seq` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::useless_let_if_seq)]`
error: `if _ { .. } else { .. }` is an expression
--> $DIR/let_if_seq.rs:73:5
|
2018-12-27 09:57:55 -06:00
LL | / let mut bar = 0;
LL | |
LL | |
2018-12-27 09:57:55 -06:00
LL | | if f() {
... |
2018-12-27 09:57:55 -06:00
LL | | f();
LL | | }
2017-07-21 03:40:23 -05: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
--> $DIR/let_if_seq.rs:83:5
|
2018-12-27 09:57:55 -06:00
LL | / let quz;
LL | |
2018-12-27 09:57:55 -06:00
LL | | if f() {
LL | | quz = 42;
LL | | } else {
LL | | quz = 0;
LL | | }
2017-07-21 03:40:23 -05:00
| |_____^ 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:113:5
2018-12-27 09:57:55 -06:00
|
LL | / let mut baz = 0;
LL | |
LL | |
2018-12-27 09:57:55 -06:00
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
2018-01-16 10:06:27 -06:00
error: aborting due to 4 previous errors