summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/type-ascription-and-other-error.rs
blob: 99ab2f3c858b9c6ec6aede6a352778ecc2dbdf1a (plain)
1
2
3
4
5
6
fn main() {
    not rust; //~ ERROR
    let _ = 0: i32; // (error hidden by existing error)
    #[cfg(FALSE)]
    let _ = 0: i32; // (warning hidden by existing error)
}