8 lines
242 B
Rust
8 lines
242 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 inbounds test failed: 0x10 is not a valid pointer
|
|
}
|