blob: 9f9921b1817d911b911e599328e5bb3f7390db8e [file] [log] [blame]
use std::alloc::{Layout, alloc, realloc};
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: has been freed
}
}