2017-08-02 17:35:44 -05:00
|
|
|
// Validation makes this fail in the wrong place
|
2018-10-12 03:54:37 -05:00
|
|
|
// compile-flags: -Zmir-emit-validate=0 -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 {
|
|
|
|
std::mem::transmute::<&usize, &fn(i32)>(&b)
|
|
|
|
};
|
|
|
|
|
2018-07-15 04:21:56 -05:00
|
|
|
(*g)(42) //~ ERROR constant evaluation error
|
2018-05-09 10:45:16 -05:00
|
|
|
//~^ NOTE a memory access tried to interpret some bytes as a pointer
|
2016-11-15 07:11:00 -06:00
|
|
|
}
|