Don't proceed to codegen if there are lint errors
This commit is contained in:
parent
0ac13bd430
commit
c008bb0012
2 changed files with 1 additions and 5 deletions
|
@ -411,7 +411,7 @@ impl Session {
|
|||
self.diagnostic().abort_if_errors();
|
||||
}
|
||||
pub fn compile_status(&self) -> Result<(), ErrorReported> {
|
||||
if self.has_errors() {
|
||||
if self.diagnostic().has_errors_or_lint_errors() {
|
||||
self.diagnostic().emit_stashed_diagnostics();
|
||||
Err(ErrorReported)
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue