2017-08-02 17:35:44 -05:00
|
|
|
// Validation makes this fail in the wrong place
|
2022-07-08 11:08:32 -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() {
|
2022-06-19 22:33:59 -05:00
|
|
|
let g = unsafe { std::mem::transmute::<usize, fn(i32)>(42) };
|
2016-11-15 07:12:49 -06:00
|
|
|
|
2022-07-11 06:44:55 -05:00
|
|
|
g(42) //~ ERROR: is a dangling pointer
|
2016-11-15 07:12:49 -06:00
|
|
|
}
|