blob: f974a4702960afbcfb3a9fcde7984ddbbb1352e2 [file] [log] [blame] [edit]
fn main() {
let a = Some(Box::new(1));
match a {
Ok(a) => //~ ERROR: mismatched types
println!("{}",a),
None => panic!()
}
}