2018-10-29 13:48:43 -05:00
|
|
|
// A callee may not read the destination of our `&mut` without
|
|
|
|
// us noticing.
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut x = 15;
|
|
|
|
let xraw = &mut x as *mut _;
|
|
|
|
let xref = unsafe { &mut *xraw }; // derived from raw, so using raw is still okay...
|
|
|
|
callee(xraw);
|
|
|
|
let _val = *xref; // ...but any use of raw will invalidate our ref.
|
2018-10-30 10:46:28 -05:00
|
|
|
//~^ ERROR: mutable reference with non-reactivatable tag
|
2018-10-29 13:48:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn callee(xraw: *mut i32) {
|
|
|
|
let _val = unsafe { *xraw };
|
|
|
|
}
|