rust/tests/compile-fail/reallocate-dangling.rs

17 lines
398 B
Rust
Raw Normal View History

#![feature(alloc, allocator_api)]
extern crate alloc;
2018-05-09 08:54:45 -05:00
use alloc::alloc::Global;
use std::alloc::*;
// error-pattern: dangling pointer was dereferenced
fn main() {
unsafe {
2018-05-09 08:54:45 -05:00
let x = Global.alloc(Layout::from_size_align_unchecked(1, 1));
Global.dealloc(x, Layout::from_size_align_unchecked(1, 1));
Global.realloc(x, Layout::from_size_align_unchecked(1, 1), 1);
}
}