2017-08-02 15:35:44 -07:00
|
|
|
// Validation makes this fail in the wrong place
|
2022-07-08 16:08:32 +00: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-07-11 11:44:55 +00:00
|
|
|
g(42) //~ ERROR: is a dangling pointer
|
2016-11-15 14:12:49 +01:00
|
|
|
}
|