rust/tests/compile-fail/deallocate-twice.rs
2018-06-05 18:08:18 +02:00

17 lines
398 B
Rust

#![feature(alloc, 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));
Global.dealloc(x, Layout::from_size_align_unchecked(1, 1));
Global.dealloc(x, Layout::from_size_align_unchecked(1, 1));
}
}