rust/tests/compile-fail/cast_int_to_fn_ptr.rs
2018-10-19 12:29:49 +02:00

11 lines
288 B
Rust

// Validation makes this fail in the wrong place
// compile-flags: -Zmir-emit-validate=0 -Zmiri-disable-validation
fn main() {
let g = unsafe {
std::mem::transmute::<usize, fn(i32)>(42)
};
g(42) //~ ERROR a memory access tried to interpret some bytes as a pointer
}