rust/tests/compile-fail/ptr_offset_int_plus_int.rs

9 lines
184 B
Rust
Raw Normal View History

// error-pattern: invalid arithmetic on pointers
fn main() {
// Can't offset an integer pointer by non-zero offset.
unsafe {
let _ = (1 as *mut u8).offset(1);
}
}