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

27 lines
436 B
Rust
Raw Normal View History

struct Guard<'a> {
f: Box<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 06:13:27 -06:00
let y = &x;
2017-12-13 19:27:23 -06:00
//~^ ERROR `x` does not live long enough
scoped(|| {
let _z = y;
//~^ ERROR `y` does not live long enough
})
2017-12-13 19:27:23 -06:00
};
2015-02-17 21:00:20 -06:00
bad.join();
}