2017-02-07 14:05:30 -06:00
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2017-05-17 10:51:35 -05:00
|
|
|
--> short_circuit_statement.rs:7:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
= note: `-D short-circuit-statement` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2017-05-17 10:51:35 -05:00
|
|
|
--> short_circuit_statement.rs:8:5
|
2017-05-11 09:45:02 -05:00
|
|
|
|
|
|
|
|
8 | f() || g();
|
|
|
|
| ^^^^^^^^^^^ help: replace it with `if !f() { g(); }`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
= note: `-D short-circuit-statement` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: boolean short circuit operator in statement may be clearer using an explicit test
|
2017-05-17 10:51:35 -05:00
|
|
|
--> short_circuit_statement.rs:9:5
|
2017-05-11 09:45:02 -05:00
|
|
|
|
|
|
|
|
9 | 1 == 2 || g();
|
|
|
|
| ^^^^^^^^^^^^^^ help: replace it with `if !(1 == 2) { g(); }`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
= note: `-D short-circuit-statement` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2017-05-26 02:21:54 -05:00
|
|
|
error: aborting due to previous error(s)
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|