blob: 87071d8b4591da9b8f515fe4ff8c7006303cf641 [file] [log] [blame]
// This should fail even without validation.
// compile-flags: -Zmiri-disable-validation
fn main() {
let x = 16usize as *const u32;
let _y = unsafe { &*x as *const u32 }; //~ ERROR 0x10 is not a valid pointer
}