Sign in
fuchsia
/
third_party
/
rust
/
2a3e17c6d5c49eeb770ade2fa660f98e9cce0ce0
/
.
/
tests
/
ui
/
consts
/
promote_const_let.rs
blob: 51a0fec2e7bfe61ea525265cb0bf80ef0f68304b [
file
] [
log
] [
blame
]
fn
main
()
{
let
x
:
&
'
static
u32
=
{
let
y
=
42
;
&
y
//~ ERROR does not live long enough
};
let
x
:
&
'
static
u32
=
&{
//~ ERROR temporary value dropped while borrowed
let
y
=
42
;
y
};
}