rust/tests/ui/regions/regions-proc-bound-capture.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
430 B
Rust
Raw Normal View History

2019-05-28 18:46:13 +00:00
fn borrowed_proc<'a>(x: &'a isize) -> Box<dyn FnMut()->(isize) + 'a> {
// This is legal, because the region bound on `proc`
// states that it captures `x`.
Box::new(move|| { *x })
}
fn static_proc(x: &isize) -> Box<dyn FnMut() -> (isize) + 'static> {
// This is illegal, because the region bound on `proc` is 'static.
Box::new(move || { *x })
2022-04-01 17:13:25 +00:00
//~^ ERROR lifetime may not live long enough
}
fn main() { }