make sure '&raw *' on a dangling raw ptr is UB
This commit is contained in:
parent
59619775ee
commit
a29f86b512
@ -0,0 +1,13 @@
|
||||
// Make sure we find these even with many checks disabled.
|
||||
// compile-flags: -Zmiri-disable-alignment-check -Zmiri-disable-stacked-borrows -Zmiri-disable-validation
|
||||
#![feature(raw_ref_macros)]
|
||||
use std::ptr;
|
||||
|
||||
fn main() {
|
||||
let p = {
|
||||
let b = Box::new(42);
|
||||
&*b as *const i32
|
||||
};
|
||||
let x = unsafe { ptr::raw_const!(*p) }; //~ ERROR dereferenced after this allocation got freed
|
||||
panic!("this should never print: {:?}", x);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user