summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/short_circuit_statement.stderr
blob: aa84ac3a7925f3e6d0f741dd1d244b3c5b46209e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: boolean short circuit operator in statement may be clearer using an explicit test
  --> $DIR/short_circuit_statement.rs:7:5
   |
LL |     f() && g();
   |     ^^^^^^^^^^^ 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
  --> $DIR/short_circuit_statement.rs:8: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:9:5
   |
LL |     1 == 2 || g();
   |     ^^^^^^^^^^^^^^ help: replace it with: `if 1 != 2 { g(); }`

error: aborting due to 3 previous errors