2020-04-14 10:03:10 +02:00
|
|
|
// Make sure we catch this even without validation
|
2022-07-08 16:08:32 +00:00
|
|
|
//@compile-flags: -Zmiri-disable-validation
|
2020-04-14 10:03:10 +02:00
|
|
|
|
2018-10-23 11:18:50 +02:00
|
|
|
// Make sure that we cannot load from memory a `&mut` that got already invalidated.
|
|
|
|
fn main() {
|
|
|
|
let x = &mut 42;
|
|
|
|
let xraw = x as *mut _;
|
|
|
|
let xref = unsafe { &mut *xraw };
|
|
|
|
let xref_in_mem = Box::new(xref);
|
2018-11-09 10:53:28 +01:00
|
|
|
let _val = unsafe { *xraw }; // invalidate xref
|
2022-07-13 18:59:33 -04:00
|
|
|
let _val = *xref_in_mem; //~ ERROR: /reborrow .* tag does not exist in the borrow stack/
|
2018-10-23 11:18:50 +02:00
|
|
|
}
|