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