rust/tests/compile-fail/cast_box_int_to_fn_ptr.rs

9 lines
220 B
Rust
Raw Normal View History

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)
};
(*g)(42) //~ ERROR tried to use an integer pointer or a dangling pointer as a function pointer
}