summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/mir_check_cast_closure.rs
blob: 4aebcfdb4f68d60d58238313c9886e532b1b92eb (plain)
1
2
3
4
5
6
7
8
9
#![allow(dead_code)]

fn bar<'a, 'b>() -> fn(&'a u32, &'b u32) -> &'a u32 {
    let g: fn(_, _) -> _ = |_x, y| y;
    g
    //~^ ERROR lifetime may not live long enough
}

fn main() {}