summaryrefslogtreecommitdiff
path: root/src/tools/miri/tests/fail/alloc/deallocate-bad-alignment.rs
blob: a07d8254ad3d5095887bbce8f83510bb062aea5e (plain)
1
2
3
4
5
6
7
8
9
10
use std::alloc::{alloc, dealloc, Layout};

//@error-pattern: 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));
    }
}