blob: 5ae03c894067df64d0d2c269d501a1509f20faad [file] [log] [blame] [edit]
fn test<'a>() {
let _:fn(&()) = |_:&'a ()| {}; //~ ERROR lifetime may not live long enough
//~^ ERROR lifetime may not live long enough
}
fn main() {
test();
}