]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/type-ascription-and-other-error.rs
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[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 }