Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nll
/
user-annotations
/
issue-54124.rs
blob: 5ae03c894067df64d0d2c269d501a1509f20faad [
file
] [
log
] [
blame
] [
edit
]
fn
test
<
'
a
>()
{
let
_
:
fn
(&())
=
|
_
:&
'
a
()|
{};
//~ ERROR lifetime may not live long enough
//~^ ERROR lifetime may not live long enough
}
fn
main
()
{
test
();
}