blob: 90af8de447dfdaa2c9eea756580b7c51bb3a5a6a [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
#![feature(const_fn_union)]
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 }];
}