mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
164 B
Rust
14 lines
164 B
Rust
//@ check-pass
|
|
|
|
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 }];
|
|
}
|