blob: c2474d0e77214dca8b16898dd7c39343a4ae51aa [file] [log] [blame]
// run-pass
#![feature(box_patterns)]
fn simple() {
match Box::new(true) {
box true => { }
_ => { panic!(); }
}
}
pub fn main() {
simple();
}