2017-02-07 21:05:30 +01:00
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/short_circuit_statement.rs:7:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
|
7 | f() && g();
|
2017-07-21 10:40:23 +02:00
|
|
|
| ^^^^^^^^^^^ help: replace it with: `if f() { g(); }`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
= note: `-D short-circuit-statement` implied by `-D warnings`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/short_circuit_statement.rs:8:5
|
2017-05-11 16:45:02 +02:00
|
|
|
|
|
|
|
|
8 | f() || g();
|
2017-07-21 10:40:23 +02:00
|
|
|
| ^^^^^^^^^^^ help: replace it with: `if !f() { g(); }`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/short_circuit_statement.rs:9:5
|
2017-05-11 16:45:02 +02:00
|
|
|
|
|
|
|
|
9 | 1 == 2 || g();
|
2017-07-21 10:40:23 +02:00
|
|
|
| ^^^^^^^^^^^^^^ help: replace it with: `if !(1 == 2) { g(); }`
|
2017-02-07 21:05:30 +01:00
|
|
|
|