]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/type-ascription-and-other-error.rs
Auto merge of #106977 - michaelwoerister:unord_id_collections, r=oli-obk
[rust.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 }