rust/tests/compile-fail/dangling_pointers/deref-invalid-ptr.rs

8 lines
242 B
Rust
Raw Normal View History

// This should fail even without validation.
// compile-flags: -Zmiri-disable-validation
fn main() {
2020-04-11 09:30:13 +02:00
let x = 16usize as *const u32;
2020-05-01 14:43:59 +02:00
let _y = unsafe { &*x as *const u32 }; //~ ERROR inbounds test failed: 0x10 is not a valid pointer
}