blob: 225bd14ade6194b936ac7cc5d4581525cb4a5a0d [file] [log] [blame]
// This should fail even without validation.
// compile-flags: -Zmiri-disable-validation
fn main() {
let x = [2u32, 3]; // Make it big enough so we don't get an out-of-bounds error.
let x = (x.as_ptr() as *const u8).wrapping_offset(3) as *const u32;
// This must fail because alignment is violated: the offset is not sufficiently aligned.
// Also make the offset not a power of 2, that used to ICE.
let _x = unsafe { *x }; //~ ERROR tried to access memory with alignment 1, but alignment 4 is required
}