summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.rs')
-rw-r--r--src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.rs b/src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.rs
index 07421173a..1ee048bf7 100644
--- a/src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.rs
+++ b/src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.rs
@@ -1,7 +1,7 @@
#![feature(non_exhaustive_omitted_patterns_lint)]
#![warn(clippy::match_same_arms)]
#![no_main]
-
+//@no-rustfix
use std::sync::atomic::Ordering; // #[non_exhaustive] enum
pub fn f(x: Ordering) {
@@ -39,6 +39,7 @@ pub fn g(x: Ordering) {
Ordering::Release => println!("release"),
Ordering::Acquire => println!("acquire"),
Ordering::AcqRel | Ordering::SeqCst => panic!(),
+ //~^ ERROR: this match arm has an identical body to the `_` wildcard arm
_ => panic!(),
}
}
@@ -52,6 +53,7 @@ mod g {
Ordering::Release => println!("release"),
Ordering::Acquire => println!("acquire"),
Ordering::AcqRel | Ordering::SeqCst => panic!(),
+ //~^ ERROR: this match arm has an identical body to the `_` wildcard arm
_ => panic!(),
}
}