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

7 lines
175 B
Rust

// error-pattern: overflowing in-bounds pointer arithmetic
fn main() {
let v = [1i8, 2];
let x = &v[1] as *const i8;
let _val = unsafe { x.offset(isize::MIN) };
}