rust/tests/compile-fail/fn_ptr_offset.rs

16 lines
406 B
Rust
Raw Normal View History

// Validation makes this fail in the wrong place
// compile-flags: -Zmir-emit-validate=0
2017-06-21 23:54:42 -05:00
use std::mem;
fn f() {}
fn main() {
let x : fn() = f;
let y : *mut u8 = unsafe { mem::transmute(x) };
let y = y.wrapping_offset(1);
let x : fn() = unsafe { mem::transmute(y) };
x(); //~ ERROR constant evaluation error [E0080]
//~^ NOTE tried to use a function pointer after offsetting it
2017-06-21 23:54:42 -05:00
}