Sign in
rust
/
miri
/
HEAD
/
.
/
tests
/
fail
/
function_pointers
/
cast_int_to_fn_ptr.rs
blob: dbf8a560fb7af83f8825270710e9e9ee38b425e0 [
file
] [
log
] [
blame
]
// Validation makes this fail in the wrong place
//@compile-flags: -Zmiri-disable-validation
fn
main
()
{
let
g
=
unsafe
{
std
::
mem
::
transmute
::<
usize
,
fn
(
i32
)>(
42
)
};
g
(
42
)
//~ ERROR: is a dangling pointer
}