summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/issue-14221.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/pattern/issue-14221.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/pattern/issue-14221.rs b/src/test/ui/pattern/issue-14221.rs
deleted file mode 100644
index 282c41113..000000000
--- a/src/test/ui/pattern/issue-14221.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-#![deny(unreachable_patterns)]
-#![allow(unused_variables)]
-#![allow(non_snake_case)]
-
-pub enum E {
- A,
- B,
-}
-
-pub mod b {
- pub fn key(e: ::E) -> &'static str {
- match e {
- A => "A",
-//~^ WARN pattern binding `A` is named the same as one of the variants of the type `E`
- B => "B", //~ ERROR: unreachable pattern
-//~^ WARN pattern binding `B` is named the same as one of the variants of the type `E`
- }
- }
-}
-
-fn main() {}