rust/tests/ui/consts/const-eval/ub-int-array.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.3 KiB
Rust
Raw Normal View History

// stderr-per-bitwidth
2020-04-16 11:21:23 +00:00
//! Test the "array of int" fast path in validity checking, and in particular whether it
//! points at the right array element.
use std::mem;
#[repr(C)]
union MaybeUninit<T: Copy> {
uninit: (),
init: T,
}
const UNINIT_INT_0: [u32; 3] = unsafe {
[
MaybeUninit { uninit: () }.init,
//~^ ERROR evaluation of constant value failed
//~| uninitialized
2020-04-16 11:21:23 +00:00
1,
2,
]
};
const UNINIT_INT_1: [u32; 3] = unsafe {
mem::transmute(
[
0u8,
0u8,
0u8,
0u8,
1u8,
MaybeUninit { uninit: () }.init,
//~^ ERROR evaluation of constant value failed
//~| uninitialized
2020-04-16 11:21:23 +00:00
1u8,
1u8,
2u8,
2u8,
MaybeUninit { uninit: () }.init,
2u8,
]
)
};
const UNINIT_INT_2: [u32; 3] = unsafe {
mem::transmute(
[
0u8,
0u8,
0u8,
0u8,
1u8,
1u8,
1u8,
1u8,
2u8,
2u8,
2u8,
MaybeUninit { uninit: () }.init,
//~^ ERROR evaluation of constant value failed
//~| uninitialized
2020-04-16 11:21:23 +00:00
]
)
};
fn main() {}