diff --git a/tests/ui/short_circuit_statement.rs b/tests/ui/short_circuit_statement.rs index 55ff4a83b87..c51bdcbe693 100644 --- a/tests/ui/short_circuit_statement.rs +++ b/tests/ui/short_circuit_statement.rs @@ -5,17 +5,8 @@ fn main() { f() && g(); - - - f() || g(); - - - 1 == 2 || g(); - - - } fn f() -> bool { diff --git a/tests/ui/short_circuit_statement.stderr b/tests/ui/short_circuit_statement.stderr index 09e24fa7de6..60b7ca801ab 100644 --- a/tests/ui/short_circuit_statement.stderr +++ b/tests/ui/short_circuit_statement.stderr @@ -11,16 +11,16 @@ note: lint level defined here | ^^^^^^^^^^^^^^^^^^^^^^^ error: boolean short circuit operator in statement may be clearer using an explicit test - --> $DIR/short_circuit_statement.rs:11:5 - | -11 | f() || g(); - | ^^^^^^^^^^^ help: replace it with `if !f() { g(); }` + --> $DIR/short_circuit_statement.rs:8:5 + | +8 | 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:15:5 - | -15 | 1 == 2 || g(); - | ^^^^^^^^^^^^^^ help: replace it with `if !(1 == 2) { g(); }` + --> $DIR/short_circuit_statement.rs:9:5 + | +9 | 1 == 2 || g(); + | ^^^^^^^^^^^^^^ help: replace it with `if !(1 == 2) { g(); }` error: aborting due to 3 previous errors