mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-02 06:28:20 +03:00
10 lines
280 B
Rust
10 lines
280 B
Rust
use std::alloc::{alloc, realloc, Layout};
|
|
|
|
fn main() {
|
|
unsafe {
|
|
let x = alloc(Layout::from_size_align_unchecked(1, 1));
|
|
realloc(x, Layout::from_size_align_unchecked(1, 1), 1);
|
|
let _z = *x; //~ ERROR dereferenced after this allocation got freed
|
|
}
|
|
}
|