rust/tests/ui/closures/closure-bounds-static-cant-...

14 lines
204 B
Rust

fn bar<F>(blk: F) where F: FnOnce() + 'static {
}
fn foo(x: &()) {
bar(|| {
//~^ ERROR borrowed data escapes
//~| ERROR closure may outlive
let _ = x;
})
}
fn main() {
}