rust/tests/compile-fail/dangling_pointers/deref-invalid-ptr.rs
2021-05-08 15:33:27 +08:00

8 lines
220 B
Rust

// This should fail even without validation.
// compile-flags: -Zmiri-disable-validation
fn main() {
let x = 16usize as *const u32;
let _y = unsafe { &*x as *const u32 }; //~ ERROR 0x10 is not a valid pointer
}