rust/tests/fail/intrinsics/ptr_offset_int_plus_int.rs

9 lines
217 B
Rust
Raw Normal View History

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