2020-04-14 10:03:10 +02:00
|
|
|
// Make sure we catch this even without validation
|
|
|
|
// compile-flags: -Zmiri-disable-validation
|
|
|
|
|
2018-10-23 16:01:22 +02:00
|
|
|
// Make sure that we cannot load from memory a `&` that got already invalidated.
|
|
|
|
fn main() {
|
|
|
|
let x = &mut 42;
|
|
|
|
let xraw = x as *mut _;
|
|
|
|
let xref = unsafe { &*xraw };
|
|
|
|
let xref_in_mem = Box::new(xref);
|
2018-11-09 10:53:28 +01:00
|
|
|
unsafe { *xraw = 42 }; // unfreeze
|
2019-04-16 17:17:28 +02:00
|
|
|
let _val = *xref_in_mem; //~ ERROR borrow stack
|
2018-10-23 16:01:22 +02:00
|
|
|
}
|