rust/tests/fail/invalid_int.rs

9 lines
351 B
Rust
Raw Normal View History

// Validation makes this fail in the wrong place
// Make sure we find these even with many checks disabled.
2022-07-08 11:08:32 -05:00
//@compile-flags: -Zmiri-disable-alignment-check -Zmiri-disable-stacked-borrows -Zmiri-disable-validation
fn main() {
let i = unsafe { std::mem::MaybeUninit::<i32>::uninit().assume_init() }; //~ ERROR: uninitialized
let _x = i + 0;
}