rust/tests/compile-fail/cast_box_int_to_fn_ptr.rs

12 lines
297 B
Rust
Raw Normal View History

// Validation makes this fail in the wrong place
// compile-flags: -Zmiri-disable-validation
2016-11-15 07:11:00 -06:00
fn main() {
let b = Box::new(42);
let g = unsafe {
std::mem::transmute::<&usize, &fn(i32)>(&b)
};
2018-10-19 04:50:17 -05:00
(*g)(42) //~ ERROR a memory access tried to interpret some bytes as a pointer
2016-11-15 07:11:00 -06:00
}