summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-12285.rs
blob: 24ac5d2fbbf909d8b7d5a266a9f0952e667e8306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-pass

struct S;

fn main() {
    match Some(&S) {
        Some(&S) => {},
        _x => unreachable!()
    }
    match Some(&S) {
        Some(&S) => {},
        None => unreachable!()
    }
}