Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-10291.rs
blob: 31b9e1240461eafe32719de2908edc99888fcf11 [
file
] [
log
] [
blame
] [
edit
]
fn
test
<
'x>(x: &'
x isize
)
{
drop
::<
Box
<
dyn
for
<
'z> FnMut(&'
z isize
)
->
&
'
z isize
>>(
Box
::
new
(|
z
|
{
x
//~^ ERROR lifetime may not live long enough
}));
}
fn
main
()
{}