rust/tests/compile-fail/deallocate-twice.rs
2019-04-14 10:30:00 +02:00

17 lines
400 B
Rust

#![feature(allocator_api)]
extern crate alloc;
use alloc::alloc::Global;
use std::alloc::*;
// error-pattern: tried to deallocate dangling pointer
fn main() {
unsafe {
let x = Global.alloc(Layout::from_size_align_unchecked(1, 1)).unwrap();
Global.dealloc(x, Layout::from_size_align_unchecked(1, 1));
Global.dealloc(x, Layout::from_size_align_unchecked(1, 1));
}
}