2017-02-07 20:05:30 +00:00
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/short_circuit_statement.rs:13:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | f() && g();
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^ help: replace it with: `if f() { g(); }`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::short-circuit-statement` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/short_circuit_statement.rs:14:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | f() || g();
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^ help: replace it with: `if !f() { g(); }`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/short_circuit_statement.rs:15:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1 == 2 || g();
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: replace it with: `if !(1 == 2) { g(); }`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|