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
|
|
|
|
2016-11-15 07:11:00 -06:00
|
|
|
fn main() {
|
|
|
|
let b = Box::new(42);
|
|
|
|
let g = unsafe {
|
2019-07-23 16:25:06 -05:00
|
|
|
std::mem::transmute::<&Box<usize>, &fn(i32)>(&b)
|
2016-11-15 07:11:00 -06:00
|
|
|
};
|
|
|
|
|
2020-03-08 17:34:54 -05:00
|
|
|
(*g)(42) //~ ERROR it does not point to a function
|
2016-11-15 07:11:00 -06:00
|
|
|
}
|