blob: e8ba824db717c6fcf6f909cfa450344015bc3af2 [file] [log] [blame]
use std::alloc::{alloc, dealloc, Layout};
//@error-in-other-file: 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));
}
}