rust/tests/compile-fail/execute_memory.rs

13 lines
305 B
Rust
Raw Normal View History

// Validation makes this fail in the wrong place
// compile-flags: -Zmiri-disable-validation
#![feature(box_syntax)]
2016-06-13 05:29:01 -05:00
2016-08-27 02:44:46 -05:00
fn main() {
let x = box 42;
2016-06-13 05:29:01 -05:00
unsafe {
let f = std::mem::transmute::<Box<i32>, fn()>(x);
2020-03-08 17:34:54 -05:00
f() //~ ERROR function pointer but it does not point to a function
2016-06-13 05:29:01 -05:00
}
}