mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-04 23:43:43 +00:00
18 lines
207 B
Rust
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);
|
|
}
|
|
}
|