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

11 lines
300 B
Rust

use std::alloc::{alloc, dealloc, realloc, Layout};
// error-pattern: allocation has size 1 and alignment 1, but gave size 2 and alignment 1
fn main() {
unsafe {
let x = alloc(Layout::from_size_align_unchecked(1, 1));
dealloc(x, Layout::from_size_align_unchecked(2, 1));
}
}