rust/tests/compile-fail/alloc/deallocate-twice.rs
2020-04-11 11:36:55 +02:00

12 lines
326 B
Rust

use std::alloc::{alloc, dealloc, Layout};
// error-pattern: dereferenced after this allocation got freed
fn main() {
unsafe {
let x = alloc(Layout::from_size_align_unchecked(1, 1));
dealloc(x, Layout::from_size_align_unchecked(1, 1));
dealloc(x, Layout::from_size_align_unchecked(1, 1));
}
}