2018-10-23 09:01:22 -05: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-10-29 13:48:43 -05:00
|
|
|
*x = 42; // invalidate xraw
|
2018-10-23 09:01:22 -05:00
|
|
|
let _val = *xref_in_mem; //~ ERROR Shr reference with non-reactivatable tag: Location should be frozen
|
|
|
|
}
|