Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nll
/
issue-55401.rs
blob: fc45824e903c8134a237003e02596c1c77777fb4 [
file
] [
log
] [
blame
] [
edit
]
fn
static_to_a_to_static_through_ref_in_tuple
<
'a>(x: &'
a u32
)
->
&
'
static
u32
{
let
(
ref
y
,
_z
):
(&
'
a u32
,
u32
)
=
(&
22
,
44
);
*
y
//~ ERROR
}
fn
main
()
{}