2019-04-14 10:30:00 +02:00
|
|
|
#![feature(allocator_api)]
|
2017-07-03 16:47:58 -07:00
|
|
|
|
|
|
|
extern crate alloc;
|
|
|
|
|
2018-05-09 15:54:45 +02:00
|
|
|
use alloc::alloc::Global;
|
2020-01-26 19:50:26 +01:00
|
|
|
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 2 and alignment 1
|
2017-07-03 16:47:58 -07:00
|
|
|
|
|
|
|
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(2, 1));
|
2017-07-03 16:47:58 -07:00
|
|
|
}
|
|
|
|
}
|