rust/tests/compile-fail/alloc/stack_free.rs
2020-09-24 09:19:03 +02:00

11 lines
324 B
Rust

// Validation/SB changes why we fail
// compile-flags: -Zmiri-disable-validation -Zmiri-disable-stacked-borrows
// error-pattern: which is stack variable memory, using Rust heap deallocation operation
fn main() {
let x = 42;
let bad_box = unsafe { std::mem::transmute::<&i32, Box<i32>>(&x) };
drop(bad_box);
}