blob: 9ffc681465504cc4b0891702e8c40cacb0659691 [file] [log] [blame] [edit]
//@compile-flags: -Zmiri-permissive-provenance
fn main() {
let p = 44 as *const i32;
let x = unsafe { *p }; //~ ERROR: is a dangling pointer
panic!("this should never print: {}", x);
}