rust/tests/fail/intrinsics/ptr_offset_int_plus_int.rs
2022-07-25 10:24:19 -04:00

9 lines
217 B
Rust

//@compile-flags: -Zmiri-permissive-provenance
fn main() {
// Can't offset an integer pointer by non-zero offset.
unsafe {
let _val = (1 as *mut u8).offset(1); //~ERROR: is a dangling pointer
}
}