mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-05 13:07:02 +00:00
18 lines
220 B
Rust
18 lines
220 B
Rust
// check-pass
|
|
// compile-flags: -Zextra-const-ub-checks
|
|
|
|
#[repr(packed)]
|
|
pub struct Foo {
|
|
bar: u8,
|
|
baa: [u32; 1],
|
|
}
|
|
|
|
const FOOMP: Foo = Foo {
|
|
bar: 0,
|
|
baa: [69; 1],
|
|
};
|
|
|
|
fn main() {
|
|
let _val = FOOMP;
|
|
}
|