2018-10-23 16:01:22 +02:00
|
|
|
// Make sure that we cannot pass by argument a `&` that got already invalidated.
|
|
|
|
fn foo(_: &i32) {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = &mut 42;
|
|
|
|
let xraw = &*x as *const _;
|
|
|
|
let xref = unsafe { &*xraw };
|
2018-10-29 19:48:43 +01:00
|
|
|
*x = 42; // invalidate xraw
|
2018-11-05 16:05:17 +01:00
|
|
|
foo(xref); //~ ERROR does not exist on the stack
|
2018-10-23 16:01:22 +02:00
|
|
|
}
|