blob: e7cb248a201acb8d0dffa58ca3a1cee2803d7613 [file] [log] [blame]
union U {
a: usize,
b: usize,
}
const C: U = U { a: 10 };
fn main() {
match C {
C => {} //~ ERROR cannot use unions in constant patterns
_ => {}
}
}