rust/tests/compile-fail/ptr_offset_ptr_plus_0.rs
2018-10-09 20:13:46 +02:00

8 lines
297 B
Rust

// error-pattern: outside bounds of allocation
fn main() {
let x = Box::into_raw(Box::new(0u32));
let x = x.wrapping_offset(8); // okay, 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
}