DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg2-3 / tests / ui / binding / match-unique-bind.rs
1234567891011
//@ run-pass #![feature(box_patterns)] pub fn main() { match Box::new(100) { box x => { println!("{}", x); assert_eq!(x, 100); } } }