rust/tests/compile-fail/ptr_offset_int_plus_ptr.rs

10 lines
254 B
Rust
Raw Normal View History

2020-03-08 23:34:54 +01:00
// error-pattern: invalid use of 1 as a pointer
fn main() {
2018-10-07 10:35:34 +02:00
let ptr = Box::into_raw(Box::new(0u32));
// Can't start with an integer pointer and get to something usable
unsafe {
2018-11-26 15:31:53 +01:00
let _val = (1 as *mut u8).offset(ptr as isize);
}
}