16 lines
445 B
Rust
16 lines
445 B
Rust
|
// A callee may not write to 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.
|
||
|
//~^ ERROR: Mut reference with non-reactivatable tag
|
||
|
}
|
||
|
|
||
|
fn callee(xraw: *mut i32) {
|
||
|
unsafe { *xraw = 15 };
|
||
|
}
|