Sign in
fuchsia
/
third_party
/
rust
/
97d936423c914c4e3402bfecfd6943e1edf23815
/
.
/
src
/
test
/
ui
/
consts
/
dangling_raw_ptr.rs
blob: c2d8e6d421a2876346286962f7b620bc946114ed [
file
] [
log
] [
blame
]
const
FOO
:
*
const
u32
=
{
//~ ERROR any use of this value will cause an error
let
x
=
42
;
&
x
};
fn
main
()
{
let
x
=
FOO
;
}