rust/tests/fail/alloc/reallocate-change-alloc.rs
2022-07-11 11:48:56 +00:00

10 lines
290 B
Rust

use std::alloc::{alloc, realloc, Layout};
fn main() {
unsafe {
let x = alloc(Layout::from_size_align_unchecked(1, 1));
let _y = realloc(x, Layout::from_size_align_unchecked(1, 1), 1);
let _z = *x; //~ ERROR: dereferenced after this allocation got freed
}
}