rust/compiler/rustc_middle
Joshua Nelson 0ac13bd430 Don't abort compilation after giving a lint error
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.
2021-11-08 01:22:28 +00:00
..
benches
src Don't abort compilation after giving a lint error 2021-11-08 01:22:28 +00:00
Cargo.toml Store lowering outputs per owner. 2021-10-09 11:56:29 +02:00
README.md

For more information about how rustc works, see the rustc dev guide.