DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb11u3 / 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); } } }