summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/short_circuit_statement.stderr
blob: dbdf44dfcbd98403956870930092db95f80ef43d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error: boolean short circuit operator in statement may be clearer using an explicit test
  --> $DIR/short_circuit_statement.rs:5:5
   |
LL |     f() && g();
   |     ^^^^^^^^^^^ help: replace it with: `if f() { g(); }`
   |
   = note: `-D clippy::short-circuit-statement` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::short_circuit_statement)]`

error: boolean short circuit operator in statement may be clearer using an explicit test
  --> $DIR/short_circuit_statement.rs:6:5
   |
LL |     f() || g();
   |     ^^^^^^^^^^^ help: replace it with: `if !f() { g(); }`

error: boolean short circuit operator in statement may be clearer using an explicit test
  --> $DIR/short_circuit_statement.rs:7:5
   |
LL |     1 == 2 || g();
   |     ^^^^^^^^^^^^^^ help: replace it with: `if 1 != 2 { g(); }`

error: aborting due to 3 previous errors