We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5960bc6 commit 6d139c7Copy full SHA for 6d139c7
compiler/rustc_hir_analysis/src/check/wfcheck.rs
@@ -119,16 +119,7 @@ where
119
120
let errors = wfcx.select_all_or_error();
121
if !errors.is_empty() {
122
- let err = infcx.err_ctxt().report_fulfillment_errors(errors);
123
- if tcx.dcx().has_errors().is_some() {
124
- return Err(err);
125
- } else {
126
- // HACK(oli-obk): tests/ui/specialization/min_specialization/specialize_on_type_error.rs
127
- // causes an delayed bug during normalization, without reporting an error, so we need
128
- // to act as if no error happened, in order to let our callers continue and report an
129
- // error later in check_impl_items_against_trait.
130
- return Ok(());
131
- }
+ return Err(infcx.err_ctxt().report_fulfillment_errors(errors));
132
}
133
134
debug!(?assumed_wf_types);
0 commit comments