rust/tests/ui/lifetimes/closure-lifetime-bounds-10291.rs
2025-07-25 20:38:54 +05:00

11 lines
262 B
Rust

//! Regression test for https://github.com/rust-lang/rust/issues/10291
fn test<'x>(x: &'x isize) {
drop::<Box<dyn for<'z> FnMut(&'z isize) -> &'z isize>>(Box::new(|z| {
x
//~^ ERROR lifetime may not live long enough
}));
}
fn main() {}