rust/tests/compile-fail/deallocate-twice.rs
2020-03-19 08:25:08 +01:00

17 lines
427 B
Rust

#![feature(allocator_api)]
extern crate alloc;
use alloc::alloc::Global;
use std::alloc::{AllocRef, Layout};
// error-pattern: dereferenced after this allocation got freed
fn main() {
unsafe {
let x = Global.alloc(Layout::from_size_align_unchecked(1, 1)).unwrap().0;
Global.dealloc(x, Layout::from_size_align_unchecked(1, 1));
Global.dealloc(x, Layout::from_size_align_unchecked(1, 1));
}
}