2020-06-20 07:28:55 -05:00
|
|
|
// Make sure we find these even with many checks disabled.
|
2022-07-08 11:08:32 -05:00
|
|
|
//@compile-flags: -Zmiri-disable-alignment-check -Zmiri-disable-stacked-borrows -Zmiri-disable-validation
|
2020-06-20 07:28:55 -05:00
|
|
|
use std::ptr;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let p = {
|
|
|
|
let b = Box::new(42);
|
|
|
|
&*b as *const i32
|
|
|
|
};
|
2022-07-11 06:44:55 -05:00
|
|
|
let x = unsafe { ptr::addr_of!(*p) }; //~ ERROR: dereferenced after this allocation got freed
|
2020-06-20 07:28:55 -05:00
|
|
|
panic!("this should never print: {:?}", x);
|
|
|
|
}
|