1
Fork 0

Never bail out early while running all the type check queries

This commit is contained in:
Oli Scherer 2024-03-07 13:59:50 +00:00
parent a6d93acf5f
commit 4279da583c
6 changed files with 20 additions and 28 deletions

View file

@ -734,7 +734,7 @@ fn analysis(tcx: TyCtxt<'_>, (): ()) -> Result<()> {
});
// passes are timed inside typeck
rustc_hir_analysis::check_crate(tcx)?;
rustc_hir_analysis::check_crate(tcx);
sess.time("MIR_borrow_checking", || {
tcx.hir().par_body_owners(|def_id| {