rust/tests/ui/rfcs/rfc-2005-default-binding-mode/box.rs
2023-01-11 09:32:08 +00:00

19 lines
279 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!(),
}
}