summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/needless_return_with_question_mark.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/needless_return_with_question_mark.stderr')
-rw-r--r--src/tools/clippy/tests/ui/needless_return_with_question_mark.stderr10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/tools/clippy/tests/ui/needless_return_with_question_mark.stderr b/src/tools/clippy/tests/ui/needless_return_with_question_mark.stderr
index 0de063380..17aa212ae 100644
--- a/src/tools/clippy/tests/ui/needless_return_with_question_mark.stderr
+++ b/src/tools/clippy/tests/ui/needless_return_with_question_mark.stderr
@@ -1,5 +1,5 @@
error: unneeded `return` statement with `?` operator
- --> $DIR/needless_return_with_question_mark.rs:27:5
+ --> $DIR/needless_return_with_question_mark.rs:29:5
|
LL | return Err(())?;
| ^^^^^^^ help: remove it
@@ -7,5 +7,11 @@ LL | return Err(())?;
= note: `-D clippy::needless-return-with-question-mark` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_return_with_question_mark)]`
-error: aborting due to previous error
+error: unneeded `return` statement with `?` operator
+ --> $DIR/needless_return_with_question_mark.rs:69:9
+ |
+LL | return Err(())?;
+ | ^^^^^^^ help: remove it
+
+error: aborting due to 2 previous errors