rust/tests/fail/intrinsics/ptr_offset_ptr_plus_0.rs
2022-06-01 10:53:38 -04:00

8 lines
304 B
Rust

// error-pattern: pointer at offset 32 is out-of-bounds
fn main() {
let x = Box::into_raw(Box::new(0u32));
let x = x.wrapping_offset(8); // ok, this has no inbounds tag
let _x = unsafe { x.offset(0) }; // UB despite offset 0, the pointer is not inbounds of the only object it can point to
}