summaryrefslogtreecommitdiffstats
path: root/src/test/ui/match/issue-42679.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/match/issue-42679.rs')
-rw-r--r--src/test/ui/match/issue-42679.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/match/issue-42679.rs b/src/test/ui/match/issue-42679.rs
deleted file mode 100644
index 46a0bd35d..000000000
--- a/src/test/ui/match/issue-42679.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// run-pass
-#![feature(box_patterns)]
-
-#[derive(Debug, PartialEq)]
-enum Test {
- Foo(usize),
- Bar(isize),
-}
-
-fn main() {
- let a = Box::new(Test::Foo(10));
- let b = Box::new(Test::Bar(-20));
- match (a, b) {
- (_, box Test::Foo(_)) => unreachable!(),
- (box Test::Foo(x), b) => {
- assert_eq!(x, 10);
- assert_eq!(b, Box::new(Test::Bar(-20)));
- },
- _ => unreachable!(),
- }
-}