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