rust/tests/compile-fail/alloc/deallocate-bad-alignment.rs
2020-04-11 11:36:55 +02:00

11 lines
291 B
Rust

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