The only reason to use `abort_if_errors` is when the program is so broken that either: 1. later passes get confused and ICE 2. any diagnostics from later passes would be noise This is never the case for lints, because the compiler has to be able to deal with `allow`-ed lints. So it can continue to lint and compile even if there are lint errors.
11 lines
207 B
Rust
11 lines
207 B
Rust
#![deny(unreachable_code)]
|
|
#![allow(dead_code)]
|
|
|
|
use std::ptr;
|
|
pub unsafe fn g() {
|
|
return;
|
|
if *ptr::null() {}; //~ ERROR unreachable
|
|
//~| WARNING dereferencing a null pointer
|
|
}
|
|
|
|
pub fn main() {}
|