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

8 lines
217 B
Rust

// error-pattern: overflowing in-bounds pointer arithmetic
fn main() {
let v = [0i8; 4];
let x = &v as *const i8;
let x = unsafe { x.offset(isize::MIN) };
panic!("this should never print: {:?}", x);
}