]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0490.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0490.rs
CommitLineData
f9f354fc
XL
1fn f<'a, 'b>(y: &'b ()) {
2 let x: &'a _ = &y;
3 //~^ E0490
4 //~| E0495
5 //~| E0495
6}
7
8fn main() {}