2018-10-23 04:18:50 -05:00
|
|
|
// Make sure that we cannot pass by argument a `&mut` that got already invalidated.
|
|
|
|
fn foo(_: &mut i32) {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = &mut 42;
|
|
|
|
let xraw = x as *mut _;
|
|
|
|
let xref = unsafe { &mut *xraw };
|
2018-11-09 03:53:28 -06:00
|
|
|
let _val = unsafe { *xraw }; // invalidate xref
|
2019-04-16 10:17:28 -05:00
|
|
|
foo(xref); //~ ERROR borrow stack
|
2018-10-23 04:18:50 -05:00
|
|
|
}
|