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, 18 insertions, 0 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
new file mode 100644
index 000000000..0d1cded36
--- /dev/null
+++ b/src/test/ui/rfcs/rfc-2005-default-binding-mode/box.rs
@@ -0,0 +1,18 @@
+// 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!(),
+ }
+}