summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfcs/rfc-2005-default-binding-mode/box.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rfcs/rfc-2005-default-binding-mode/box.rs')
-rw-r--r--src/test/ui/rfcs/rfc-2005-default-binding-mode/box.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/rfcs/rfc-2005-default-binding-mode/box.rs b/src/test/ui/rfcs/rfc-2005-default-binding-mode/box.rs
deleted file mode 100644
index 0d1cded36..000000000
--- a/src/test/ui/rfcs/rfc-2005-default-binding-mode/box.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// run-pass
-#![allow(unreachable_patterns)]
-#![feature(box_patterns)]
-
-struct Foo{}
-
-pub fn main() {
- let b = Box::new(Foo{});
- let box f = &b;
- let _: &Foo = f;
-
- match &&&b {
- box f => {
- let _: &Foo = f;
- },
- _ => panic!(),
- }
-}