rust/tests/ui/short_circuit_statement.stderr

23 lines
796 B
Text
Raw Normal View History

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