rust/tests/compile-fail/function_pointers/cast_int_to_fn_ptr.rs
2020-05-01 14:43:59 +02:00

11 lines
257 B
Rust

// Validation makes this fail in the wrong place
// compile-flags: -Zmiri-disable-validation
fn main() {
let g = unsafe {
std::mem::transmute::<usize, fn(i32)>(42)
};
g(42) //~ ERROR inbounds test failed: 0x2a is not a valid pointer
}