10 lines
285 B
Rust
10 lines
285 B
Rust
//@compile-flags: -Zmiri-permissive-provenance
|
|
|
|
fn main() {
|
|
let ptr = Box::into_raw(Box::new(0u32));
|
|
// Can't start with an integer pointer and get to something usable
|
|
unsafe {
|
|
let _val = (1 as *mut u8).offset(ptr as isize); //~ERROR: is a dangling pointer
|
|
}
|
|
}
|