summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-11844.rs
blob: bb06f00d5cf2d5f0cf171e176b70607a44ff25a2 (plain)
1
2
3
4
5
6
7
8
9
10
#![feature(box_syntax)]

fn main() {
    let a = Some(box 1);
    match a {
        Ok(a) => //~ ERROR: mismatched types
            println!("{}",a),
        None => panic!()
    }
}