summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/if_same_then_else2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/if_same_then_else2.stderr')
-rw-r--r--src/tools/clippy/tests/ui/if_same_then_else2.stderr22
1 files changed, 21 insertions, 1 deletions
diff --git a/src/tools/clippy/tests/ui/if_same_then_else2.stderr b/src/tools/clippy/tests/ui/if_same_then_else2.stderr
index 37fe787d1..fe68ef271 100644
--- a/src/tools/clippy/tests/ui/if_same_then_else2.stderr
+++ b/src/tools/clippy/tests/ui/if_same_then_else2.stderr
@@ -24,6 +24,7 @@ LL | | }
LL | | }
| |_____^
= note: `-D clippy::if-same-then-else` implied by `-D warnings`
+ = help: to override `-D warnings` add `#[allow(clippy::if_same_then_else)]`
error: this `if` has identical blocks
--> $DIR/if_same_then_else2.rs:36:13
@@ -83,6 +84,25 @@ LL | | };
| |_____^
error: this `if` has identical blocks
+ --> $DIR/if_same_then_else2.rs:100:13
+ |
+LL | if true {
+ | _____________^
+LL | |
+LL | | Ok("foo")?;
+LL | | } else {
+ | |_____^
+ |
+note: same as this
+ --> $DIR/if_same_then_else2.rs:103:12
+ |
+LL | } else {
+ | ____________^
+LL | | Ok("foo")?;
+LL | | }
+ | |_____^
+
+error: this `if` has identical blocks
--> $DIR/if_same_then_else2.rs:124:20
|
LL | } else if true {
@@ -103,5 +123,5 @@ LL | | return Ok(&foo[0..]);
LL | | }
| |_____^
-error: aborting due to 5 previous errors
+error: aborting due to 6 previous errors