summary refs log tree commit diff
path: root/src/test/ui/issues/issue-10291.rs
blob: 559c5fcac954bd5f21ac77c9892616cf63da7596 (plain)
1
2
3
4
5
6
7
fn test<'x>(x: &'x isize) {
    drop::<Box<dyn for<'z> FnMut(&'z isize) -> &'z isize>>(Box::new(|z| {
        x //~ ERROR E0312
    }));
}

fn main() {}