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

16 lines
385 B
Rust
Raw Normal View History

2019-04-14 10:30:00 +02:00
#![feature(allocator_api)]
extern crate alloc;
2018-05-09 15:54:45 +02:00
use alloc::alloc::Global;
use std::alloc::{AllocRef, Layout};
2017-07-10 15:58:47 -07:00
2020-03-08 23:34:54 +01:00
// error-pattern: allocation has size 1 and alignment 1, but gave size 1 and alignment 2
fn main() {
unsafe {
2020-03-04 09:50:26 +01:00
let x = Global.alloc(Layout::from_size_align_unchecked(1, 1)).unwrap().0;
2018-05-09 15:54:45 +02:00
Global.dealloc(x, Layout::from_size_align_unchecked(1, 2));
}
}