summary refs log tree commit diff
path: root/src/test/ui/nll/user-annotations/issue-54124.rs
blob: e1de67aa93869e292444b103989a342a06539a03 (plain)
1
2
3
4
5
6
7
8
9
10
#![feature(nll)]

fn test<'a>() {
    let _:fn(&()) = |_:&'a ()| {}; //~ ERROR lifetime may not live long enough
    //~^ ERROR lifetime may not live long enough
}

fn main() {
    test();
}