summaryrefslogtreecommitdiffstats
path: root/src/test/ui/union/union-const-pat.rs
blob: e7cb248a201acb8d0dffa58ca3a1cee2803d7613 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
union U {
    a: usize,
    b: usize,
}

const C: U = U { a: 10 };

fn main() {
    match C {
        C => {} //~ ERROR cannot use unions in constant patterns
        _ => {}
    }
}