mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
295 B
Rust
20 lines
295 B
Rust
// run-pass
|
|
// revisions: mirunsafeck thirunsafeck
|
|
// [thirunsafeck]compile-flags: -Z thir-unsafeck
|
|
|
|
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);
|
|
}
|
|
}
|