summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/usefulness/match-vec-fixed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/pattern/usefulness/match-vec-fixed.rs')
-rw-r--r--src/test/ui/pattern/usefulness/match-vec-fixed.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/pattern/usefulness/match-vec-fixed.rs b/src/test/ui/pattern/usefulness/match-vec-fixed.rs
deleted file mode 100644
index e611779de..000000000
--- a/src/test/ui/pattern/usefulness/match-vec-fixed.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-#![deny(unreachable_patterns)]
-
-fn a() {
- let v = [1, 2, 3];
- match v {
- [_, _, _] => {}
- [_, _, _] => {} //~ ERROR unreachable pattern
- }
- match v {
- [_, 1, _] => {}
- [_, 1, _] => {} //~ ERROR unreachable pattern
- _ => {}
- }
-}
-
-fn main() {
- a();
-}