Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
nll
/
mir_check_cast_closure.rs
blob: 4aebcfdb4f68d60d58238313c9886e532b1b92eb [
file
] [
log
] [
blame
]
#![
allow
(
dead_code
)]
fn
bar
<
'a, '
b
>()
->
fn
(&
'a u32, &'
b u32
)
->
&
'
a u32
{
let
g
:
fn
(
_
,
_
)
->
_
=
|
_x
,
y
|
y
;
g
//~^ ERROR lifetime may not live long enough
}
fn
main
()
{}