2017-02-07 14:05:30 -06:00
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/short_circuit_statement.rs:5:5
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | f() && g();
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^ help: replace it with: `if f() { g(); }`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::short-circuit-statement` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::short_circuit_statement)]`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/short_circuit_statement.rs:6:5
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | f() || g();
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^ help: replace it with: `if !f() { g(); }`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/short_circuit_statement.rs:7:5
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | 1 == 2 || g();
|
2021-12-30 08:10:43 -06:00
|
|
|
| ^^^^^^^^^^^^^^ help: replace it with: `if 1 != 2 { g(); }`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|