summary refs log tree commit diff
path: root/src/test/ui/issues/issue-52533.rs
blob: a35f5a80a87fe14109686733ce89642b62172b99 (plain)
1
2
3
4
5
6
7
fn foo(_: impl for<'a> FnOnce(&'a u32, &u32) -> &'a u32) {
}

fn main() {
    foo(|a, b| b)
    //~^ ERROR lifetime of reference outlives lifetime of borrowed content...
}