ef52be031c
This also passes miri-test-libstd!
11 lines
299 B
Rust
11 lines
299 B
Rust
// 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 };
|
|
let _val = unsafe { *xraw }; // invalidate xref
|
|
foo(xref); //~ ERROR borrow stack
|
|
}
|