blob: f04927beb1632ac4fea6b910eb321204c295278d [file] [log] [blame]
use std::alloc::{Layout, alloc, dealloc};
fn main() {
unsafe {
let x = alloc(Layout::from_size_align_unchecked(1, 1));
dealloc(x, Layout::from_size_align_unchecked(1, 2)); //~ERROR: has size 1 and alignment 1, but gave size 1 and alignment 2
}
}