Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
regions
/
region-bound-on-closure-outlives-call.rs
blob: 1311d5121b5a107b60121ba311975ea17bff2422 [
file
] [
log
] [
blame
] [
edit
]
fn
call_rec
<
F
>(
mut
f
:
F
)
->
usize where F
:
FnMut
(
usize
)
->
usize
{
//~^ WARN function cannot return without recursing
(|
x
|
f
(
x
))(
call_rec
(
f
))
//~ ERROR cannot move out of `f`
}
fn
main
()
{}