rust/tests/compile-fail/reallocate-bad-size.rs

14 lines
264 B
Rust

#![feature(alloc, heap_api)]
extern crate alloc;
// error-pattern: tried to deallocate or reallocate using incorrect alignment or size
use alloc::heap::*;
fn main() {
unsafe {
let x = allocate(1, 1);
let _y = reallocate(x, 2, 1, 1);
}
}