rust/tests/compile-fail/reallocate-change-alloc.rs

15 lines
405 B
Rust
Raw Normal View History

2019-04-14 10:30:00 +02:00
#![feature(allocator_api)]
extern crate alloc;
2018-05-09 15:54:45 +02:00
use alloc::alloc::Global;
use std::alloc::{AllocRef, Layout};
2017-07-10 15:58:47 -07:00
fn main() {
unsafe {
2020-03-04 09:50:26 +01:00
let x = Global.alloc(Layout::from_size_align_unchecked(1, 1)).unwrap().0;
Global.realloc(x, Layout::from_size_align_unchecked(1, 1), 1).unwrap();
2020-03-08 23:34:54 +01:00
let _z = *(x.as_ptr() as *mut u8); //~ ERROR dereferenced after this allocation got freed
}
}