rust/tests/ui/suggestions/type-ascription-and-other-e...

7 lines
170 B
Rust

fn main() {
not rust; //~ ERROR
let _ = 0: i32; // (error hidden by existing error)
#[cfg(FALSE)]
let _ = 0: i32; // (warning hidden by existing error)
}