summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/suspicious_else_formatting.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /src/tools/clippy/tests/ui/suspicious_else_formatting.stderr
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/suspicious_else_formatting.stderr')
-rw-r--r--src/tools/clippy/tests/ui/suspicious_else_formatting.stderr18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/tools/clippy/tests/ui/suspicious_else_formatting.stderr b/src/tools/clippy/tests/ui/suspicious_else_formatting.stderr
index 2e512b47f..723fdd7e9 100644
--- a/src/tools/clippy/tests/ui/suspicious_else_formatting.stderr
+++ b/src/tools/clippy/tests/ui/suspicious_else_formatting.stderr
@@ -1,5 +1,5 @@
error: this looks like an `else {..}` but the `else` is missing
- --> $DIR/suspicious_else_formatting.rs:17:6
+ --> $DIR/suspicious_else_formatting.rs:22:6
|
LL | } {
| ^
@@ -8,7 +8,7 @@ LL | } {
= note: `-D clippy::suspicious-else-formatting` implied by `-D warnings`
error: this looks like an `else if` but the `else` is missing
- --> $DIR/suspicious_else_formatting.rs:21:6
+ --> $DIR/suspicious_else_formatting.rs:26:6
|
LL | } if foo() {
| ^
@@ -16,7 +16,7 @@ LL | } if foo() {
= note: to remove this lint, add the missing `else` or add a new line before the second `if`
error: this looks like an `else if` but the `else` is missing
- --> $DIR/suspicious_else_formatting.rs:28:10
+ --> $DIR/suspicious_else_formatting.rs:33:10
|
LL | } if foo() {
| ^
@@ -24,7 +24,7 @@ LL | } if foo() {
= note: to remove this lint, add the missing `else` or add a new line before the second `if`
error: this looks like an `else if` but the `else` is missing
- --> $DIR/suspicious_else_formatting.rs:36:10
+ --> $DIR/suspicious_else_formatting.rs:41:10
|
LL | } if foo() {
| ^
@@ -32,7 +32,7 @@ LL | } if foo() {
= note: to remove this lint, add the missing `else` or add a new line before the second `if`
error: this is an `else {..}` but the formatting might hide it
- --> $DIR/suspicious_else_formatting.rs:45:6
+ --> $DIR/suspicious_else_formatting.rs:50:6
|
LL | } else
| ______^
@@ -42,7 +42,7 @@ LL | | {
= note: to remove this lint, remove the `else` or remove the new line between `else` and `{..}`
error: this is an `else if` but the formatting might hide it
- --> $DIR/suspicious_else_formatting.rs:57:6
+ --> $DIR/suspicious_else_formatting.rs:62:6
|
LL | } else
| ______^
@@ -52,7 +52,7 @@ LL | | if foo() { // the span of the above error should continue here
= note: to remove this lint, remove the `else` or remove the new line between `else` and `if`
error: this is an `else if` but the formatting might hide it
- --> $DIR/suspicious_else_formatting.rs:62:6
+ --> $DIR/suspicious_else_formatting.rs:67:6
|
LL | }
| ______^
@@ -63,7 +63,7 @@ LL | | if foo() { // the span of the above error should continue here
= note: to remove this lint, remove the `else` or remove the new line between `else` and `if`
error: this is an `else {..}` but the formatting might hide it
- --> $DIR/suspicious_else_formatting.rs:89:6
+ --> $DIR/suspicious_else_formatting.rs:94:6
|
LL | }
| ______^
@@ -75,7 +75,7 @@ LL | | {
= note: to remove this lint, remove the `else` or remove the new line between `else` and `{..}`
error: this is an `else {..}` but the formatting might hide it
- --> $DIR/suspicious_else_formatting.rs:97:6
+ --> $DIR/suspicious_else_formatting.rs:102:6
|
LL | }
| ______^