rust/src/test/ui/nll/user-annotations/issue-54124.rs

11 lines
189 B
Rust
Raw Normal View History

#![feature(nll)]
fn test<'a>() {
2018-11-27 03:56:36 -06:00
let _:fn(&()) = |_:&'a ()| {}; //~ ERROR unsatisfied lifetime constraints
//~^ ERROR unsatisfied lifetime constraints
}
fn main() {
test();
}