]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/type-ascription-and-other-error.rs
Rollup merge of #105256 - GuillaumeGomez:comment-method-margins, r=notriddle
[rust.git] / src / test / 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 }