2020-04-10 03:27:59 -05:00
|
|
|
use std::alloc::{alloc, realloc, Layout};
|
2017-07-10 17:58:47 -05:00
|
|
|
|
2017-07-03 18:06:06 -05:00
|
|
|
fn main() {
|
|
|
|
unsafe {
|
2020-04-02 06:33:59 -05:00
|
|
|
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
|
2017-07-03 18:06:06 -05:00
|
|
|
}
|
|
|
|
}
|