Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ check-pass
union U {
a: usize,
b: usize,
}
const C: U = U { a: 10 };
fn main() {
let a: [u8; unsafe { C.a }];
let b: [u8; unsafe { C.b }];