Sign in
rust
/
rust
/
e8a28e78a947c2233abbc47ec00bcd8513df7239
/
.
/
src
/
tools
/
miri
/
tests
/
fail
/
dangling_pointers
/
wild_pointer_deref.rs
blob: 9ffc681465504cc4b0891702e8c40cacb0659691 [
file
]
//@compile-flags: -Zmiri-permissive-provenance
fn
main
()
{
let
p
=
44
as
*
const
i32
;
let
x
=
unsafe
{
*
p
};
//~ ERROR: is a dangling pointer
panic
!(
"this should never print: {}"
,
x
);
}