summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/redundant_else.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/tools/clippy/tests/ui/redundant_else.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/redundant_else.stderr')
-rw-r--r--src/tools/clippy/tests/ui/redundant_else.stderr80
1 files changed, 80 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/redundant_else.stderr b/src/tools/clippy/tests/ui/redundant_else.stderr
new file mode 100644
index 000000000..9000cdc81
--- /dev/null
+++ b/src/tools/clippy/tests/ui/redundant_else.stderr
@@ -0,0 +1,80 @@
+error: redundant else block
+ --> $DIR/redundant_else.rs:10:16
+ |
+LL | } else {
+ | ________________^
+LL | | println!("yet don't pull down your hedge.");
+LL | | }
+ | |_________^
+ |
+ = note: `-D clippy::redundant-else` implied by `-D warnings`
+ = help: remove the `else` block and move the contents out
+
+error: redundant else block
+ --> $DIR/redundant_else.rs:17:16
+ |
+LL | } else {
+ | ________________^
+LL | | println!("shall rise up with fleas.");
+LL | | }
+ | |_________^
+ |
+ = help: remove the `else` block and move the contents out
+
+error: redundant else block
+ --> $DIR/redundant_else.rs:26:16
+ |
+LL | } else {
+ | ________________^
+LL | | println!("You may delay, but time will not.");
+LL | | }
+ | |_________^
+ |
+ = help: remove the `else` block and move the contents out
+
+error: redundant else block
+ --> $DIR/redundant_else.rs:35:12
+ |
+LL | } else {
+ | ____________^
+LL | | println!("A fat kitchen makes a lean will.");
+LL | | }
+ | |_____^
+ |
+ = help: remove the `else` block and move the contents out
+
+error: redundant else block
+ --> $DIR/redundant_else.rs:42:16
+ |
+LL | } else {
+ | ________________^
+LL | | 1
+LL | | }
+ | |_________^
+ |
+ = help: remove the `else` block and move the contents out
+
+error: redundant else block
+ --> $DIR/redundant_else.rs:52:16
+ |
+LL | } else {
+ | ________________^
+LL | | 2
+LL | | }
+ | |_________^
+ |
+ = help: remove the `else` block and move the contents out
+
+error: redundant else block
+ --> $DIR/redundant_else.rs:61:16
+ |
+LL | } else {
+ | ________________^
+LL | | 1
+LL | | }
+ | |_________^
+ |
+ = help: remove the `else` block and move the contents out
+
+error: aborting due to 7 previous errors
+