| //@compile-flags: -Zmiri-strict-provenance | |
| fn main() { | |
| let x = 22; | |
| let ptr = &x as *const _ as *const u8; | |
| let roundtrip = std::ptr::without_provenance::<u8>(ptr as usize); | |
| // Not even offsetting this is allowed. | |
| let _ = unsafe { roundtrip.offset(1) }; //~ERROR: is a dangling pointer | |
| } |