]> git.proxmox.com Git - rustc.git/blob - tests/ui/suggestions/type-ascription-and-other-error.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / suggestions / type-ascription-and-other-error.rs
1 fn main() {
2 not rust; //~ ERROR
3 let _ = 0: i32; // (error hidden by existing error)
4 #[cfg(FALSE)]
5 let _ = 0: i32; // (warning hidden by existing error)
6 }