Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
extra-const-ub
/
issue-101034.rs
blob: cb0a0fb0d5b515b3a6442de5cf8a543671ebd004 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
;
}