2018-10-23 04:18:50 -05: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 03:53:28 -06:00
|
|
|
let _val = unsafe { *xraw }; // invalidate xref
|
2018-11-05 09:05:17 -06:00
|
|
|
let _val = *xref_in_mem; //~ ERROR does not exist on the stack
|
2018-10-23 04:18:50 -05:00
|
|
|
}
|