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:12:49 -06:00
|
|
|
fn main() {
|
|
|
|
let g = unsafe {
|
|
|
|
std::mem::transmute::<usize, fn(i32)>(42)
|
|
|
|
};
|
|
|
|
|
2021-05-08 02:33:27 -05:00
|
|
|
g(42) //~ ERROR 0x2a is not a valid pointer
|
2016-11-15 07:12:49 -06:00
|
|
|
}
|