mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
982b49494e
This is to make the diff when stabilizing it easier to review.
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);
|
|
}
|
|
}
|