rust/tests/compile-fail-fullmir/stack_free.rs

8 lines
208 B
Rust
Raw Normal View History

// error-pattern: tried to deallocate Stack memory but gave Machine(Rust) as the kind
2017-07-13 12:10:14 -05:00
fn main() {
let x = 42;
let bad_box = unsafe { std::mem::transmute::<&i32, Box<i32>>(&x) };
2017-07-13 12:10:14 -05:00
drop(bad_box);
}