2017-02-07 14:05:30 -06:00
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
|
|
|
--> $DIR/short_circuit_statement.rs:7:5
|
|
|
|
|
|
|
|
|
7 | f() && g();
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^ help: replace it with `if f() { g(); }`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/short_circuit_statement.rs:4:9
|
|
|
|
|
|
|
|
|
4 | #![deny(short_circuit_statement)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
|
|
|
--> $DIR/short_circuit_statement.rs:11:5
|
|
|
|
|
|
|
|
|
11 | f() || g();
|
2017-05-03 05:51:47 -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
|
|
|
|
--> $DIR/short_circuit_statement.rs:15:5
|
|
|
|
|
|
|
|
|
15 | 1 == 2 || g();
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^ help: replace it with `if !(1 == 2) { g(); }`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|