blob: bb06f00d5cf2d5f0cf171e176b70607a44ff25a2 [file] [log] [blame]
#![feature(box_syntax)]
fn main() {
let a = Some(box 1);
match a {
Ok(a) => //~ ERROR: mismatched types
println!("{}",a),
None => panic!()
}
}