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:12:49 +01:00
|
|
|
fn main() {
|
2022-06-19 20:33:59 -07:00
|
|
|
let g = unsafe { std::mem::transmute::<usize, fn(i32)>(42) };
|
2016-11-15 14:12:49 +01:00
|
|
|
|
2022-03-17 13:49:10 +00:00
|
|
|
g(42) //~ ERROR not a valid pointer
|
2016-11-15 14:12:49 +01:00
|
|
|
}
|