rust/tests/ui/binding/match-unique-bind.rs
2023-01-11 09:32:08 +00:00

12 lines
169 B
Rust

// run-pass
#![feature(box_patterns)]
pub fn main() {
match Box::new(100) {
box x => {
println!("{}", x);
assert_eq!(x, 100);
}
}
}