2017-08-02 17:35:44 -05:00
|
|
|
// Validation makes this fail in the wrong place
|
2018-10-24 10:17:44 -05:00
|
|
|
// compile-flags: -Zmiri-disable-validation
|
2017-08-02 17:35:44 -05:00
|
|
|
|
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) };
|
2018-10-19 04:50:17 -05:00
|
|
|
x(); //~ ERROR tried to use a function pointer after offsetting it
|
2017-06-21 23:54:42 -05:00
|
|
|
}
|