rust/tests/compile-fail/intrinsics/ptr_offset_int_plus_ptr.rs
2020-05-01 14:43:59 +02:00

10 lines
273 B
Rust

// error-pattern: inbounds test failed: 0x1 is not a valid pointer
fn main() {
let ptr = Box::into_raw(Box::new(0u32));
// Can't start with an integer pointer and get to something usable
unsafe {
let _val = (1 as *mut u8).offset(ptr as isize);
}
}