rust/tests/fail/dangling_pointers/stack_temporary.rs
2022-07-11 11:48:56 +00:00

15 lines
439 B
Rust

// This should fail even without validation, but some MIR opts mask the error
//@compile-flags: -Zmiri-disable-validation -Zmir-opt-level=0
unsafe fn make_ref<'a>(x: *mut i32) -> &'a mut i32 {
&mut *x
}
fn main() {
unsafe {
let x = make_ref(&mut 0); // The temporary storing "0" is deallocated at the ";"!
let val = *x; //~ ERROR: dereferenced after this allocation got freed
println!("{}", val);
}
}