summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.stderr')
-rw-r--r--src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.stderr16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.stderr b/src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.stderr
index a03953633..ae6b02ab1 100644
--- a/src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.stderr
+++ b/src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.stderr
@@ -1,29 +1,29 @@
error: this match arm has an identical body to the `_` wildcard arm
- --> $DIR/match_same_arms_non_exhaustive.rs:41:9
+ --> $DIR/match_same_arms_non_exhaustive.rs:45:9
|
-LL | Ordering::AcqRel | Ordering::SeqCst => panic!(),
+LL | Ordering::AcqRel | Ordering::SeqCst => repeat(),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try removing the arm
|
= help: or try changing either arm body
note: `_` wildcard arm here
- --> $DIR/match_same_arms_non_exhaustive.rs:43:9
+ --> $DIR/match_same_arms_non_exhaustive.rs:47:9
|
-LL | _ => panic!(),
+LL | _ => repeat(),
| ^^^^^^^^^^^^^
= note: `-D clippy::match-same-arms` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::match_same_arms)]`
error: this match arm has an identical body to the `_` wildcard arm
- --> $DIR/match_same_arms_non_exhaustive.rs:55:13
+ --> $DIR/match_same_arms_non_exhaustive.rs:59:13
|
-LL | Ordering::AcqRel | Ordering::SeqCst => panic!(),
+LL | Ordering::AcqRel | Ordering::SeqCst => repeat(),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try removing the arm
|
= help: or try changing either arm body
note: `_` wildcard arm here
- --> $DIR/match_same_arms_non_exhaustive.rs:57:13
+ --> $DIR/match_same_arms_non_exhaustive.rs:61:13
|
-LL | _ => panic!(),
+LL | _ => repeat(),
| ^^^^^^^^^^^^^
error: aborting due to 2 previous errors