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