Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
borrowck
/
issue-53432-nested-closure-outlives-borrowed-value.rs
blob: f1fd1b507c71e0b98bd840115b324b9d3525fdab [
file
] [
log
] [
blame
]
fn
main
()
{
let
f
=
move
||
{};
let
_action
=
move
||
{
||
f
()
// The `nested` closure
//~^ ERROR lifetime may not live long enough
};
}