1 2 3 4 5 6 7
fn main() { let f = move || {}; let _action = move || { || f() // The `nested` closure //~^ ERROR lifetime may not live long enough }; }