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

11 lines
300 B
Rust
Raw Normal View History

use std::alloc::{alloc, dealloc, realloc, Layout};
2017-07-10 17:58:47 -05:00
2020-03-08 17:34:54 -05:00
// 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));
}
}