rust/tests/ui/span/send-is-not-static-ensures-scoping.rs

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

27 lines
440 B
Rust
Raw Normal View History

struct Guard<'a> {
2019-05-28 18:46:13 +00:00
f: Box<dyn Fn() + Send + 'a>,
}
fn scoped<'a, F: Fn() + Send + 'a>(f: F) -> Guard<'a> {
Guard { f: Box::new(f) }
}
impl<'a> Guard<'a> {
fn join(self) {}
}
fn main() {
let bad = {
let x = 1;
2017-11-20 12:13:27 +00:00
let y = &x;
2017-12-14 01:27:23 +00:00
//~^ ERROR `x` does not live long enough
scoped(|| {
let _z = y;
//~^ ERROR `y` does not live long enough
})
2017-12-14 01:27:23 +00:00
};
2015-02-18 03:00:20 +00:00
bad.join();
}