rust/tests/ui/consts/extra-const-ub/issue-100771.rs
2024-02-16 20:02:50 +00:00

21 lines
353 B
Rust

//@ check-pass
//@ compile-flags: -Zextra-const-ub-checks
#[derive(PartialEq, Eq, Copy, Clone)]
#[repr(packed)]
struct Foo {
field: (i64, u32, u32, u32),
}
const FOO: Foo = Foo {
field: (5, 6, 7, 8),
};
fn main() {
match FOO {
Foo { field: (5, 6, 7, 8) } => {},
FOO => unreachable!(),
_ => unreachable!(),
}
}