rust/tests/compile-fail/alloc/deallocate-twice.rs

12 lines
326 B
Rust
Raw Normal View History

2020-04-10 10:27:59 +02:00
use std::alloc::{alloc, dealloc, Layout};
2017-07-10 15:58:47 -07:00
2020-03-08 23:34:54 +01:00
// 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));
}
}