rust/tests/ui/closures/closure-bounds-static-cant-capture-borrowed.rs
2023-01-11 09:32:08 +00:00

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() {
}