rustc/tests/ui/binding/match-unique-bind.rs
2023-08-02 10:33:26 +02: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);
}
}
}