rust/tests/ui/union/union-const-codegen.rs
Matthew Jasper 982b49494e Remove revisions for THIR unsafeck
This is to make the diff when stabilizing it easier to review.
2024-01-05 09:30:27 +00:00

18 lines
207 B
Rust

// run-pass
union U {
a: u64,
b: u64,
}
const C: U = U { b: 10 };
fn main() {
unsafe {
let a = C.a;
let b = C.b;
assert_eq!(a, 10);
assert_eq!(b, 10);
}
}