2020-04-02 06:33:59 -05:00
|
|
|
use std::alloc::{alloc, dealloc, realloc, Layout};
|
2017-07-18 15:50:54 -05:00
|
|
|
|
2020-03-08 17:34:54 -05:00
|
|
|
// error-pattern: dereferenced after this allocation got freed
|
2017-07-18 15:50:54 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
unsafe {
|
2020-04-02 06:33:59 -05:00
|
|
|
let x = alloc(Layout::from_size_align_unchecked(1, 1));
|
|
|
|
dealloc(x, Layout::from_size_align_unchecked(1, 1));
|
2021-11-01 17:31:37 -05:00
|
|
|
let _z = realloc(x, Layout::from_size_align_unchecked(1, 1), 1);
|
2017-07-18 15:50:54 -05:00
|
|
|
}
|
|
|
|
}
|