rust/tests/ui/rfcs/rfc-2005-default-binding-mode/box.rs

19 lines
280 B
Rust

//@ 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!(),
}
}