2017-08-02 15:35:44 -07:00
|
|
|
// Validation makes this fail in the wrong place
|
2018-10-24 17:17:44 +02:00
|
|
|
// compile-flags: -Zmiri-disable-validation
|
2017-08-02 15:35:44 -07:00
|
|
|
|
2016-11-15 14:11:00 +01:00
|
|
|
fn main() {
|
|
|
|
let b = Box::new(42);
|
|
|
|
let g = unsafe {
|
2019-07-23 23:25:06 +02:00
|
|
|
std::mem::transmute::<&Box<usize>, &fn(i32)>(&b)
|
2016-11-15 14:11:00 +01:00
|
|
|
};
|
|
|
|
|
2019-07-23 23:25:06 +02:00
|
|
|
(*g)(42) //~ ERROR tried to treat a memory pointer as a function pointer
|
2016-11-15 14:11:00 +01:00
|
|
|
}
|