rust/tests/compile-fail/alloc/reallocate-bad-size.rs

11 lines
292 B
Rust
Raw Normal View History

2020-04-10 03:27:59 -05:00
use std::alloc::{alloc, realloc, Layout};
2017-07-10 17:58:47 -05:00
2020-09-24 02:19:03 -05:00
// error-pattern: has size 1 and alignment 1, but gave size 2 and alignment 1
fn main() {
unsafe {
let x = alloc(Layout::from_size_align_unchecked(1, 1));
2021-11-01 17:31:37 -05:00
let _y = realloc(x, Layout::from_size_align_unchecked(2, 1), 1);
}
}