rust/tests/compile-fail/execute_memory.rs

13 lines
306 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 12:29:01 +02:00
2016-08-27 01:44:46 -06:00
fn main() {
let x = box 42;
2016-06-13 12:29:01 +02:00
unsafe {
let f = std::mem::transmute::<Box<i32>, fn()>(x);
2018-10-19 11:50:17 +02:00
f() //~ ERROR tried to treat a memory pointer as a function pointer
2016-06-13 12:29:01 +02:00
}
}