rust/tests/fail/stacked_borrows/load_invalid_shr.rs

13 lines
404 B
Rust
Raw Normal View History

// Make sure we catch this even without validation
2022-07-08 11:08:32 -05:00
//@compile-flags: -Zmiri-disable-validation
// 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);
unsafe { *xraw = 42 }; // unfreeze
let _val = *xref_in_mem; //~ ERROR: borrow stack
}