]> git.proxmox.com Git - rustc.git/blame - src/test/ui/nll/user-annotations/issue-54124.rs
New upstream version 1.34.2+dfsg1
[rustc.git] / src / test / ui / nll / user-annotations / issue-54124.rs
CommitLineData
0bf4aa26
XL
1#![feature(nll)]
2
3fn test<'a>() {
9fa01778
XL
4 let _:fn(&()) = |_:&'a ()| {}; //~ ERROR lifetime may not live long enough
5 //~^ ERROR lifetime may not live long enough
0bf4aa26
XL
6}
7
8fn main() {
9 test();
10}