rust/tests/compile-fail/reallocate-change-alloc.rs

10 lines
289 B
Rust
Raw Normal View History

use std::alloc::{alloc, dealloc, realloc, Layout};
2017-07-10 15:58:47 -07:00
fn main() {
unsafe {
let x = alloc(Layout::from_size_align_unchecked(1, 1));
realloc(x, Layout::from_size_align_unchecked(1, 1), 1);
let _z = *x; //~ ERROR dereferenced after this allocation got freed
}
}