diff options
| author | Michael Goulet <michael@errs.io> | 2022-11-25 17:11:15 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2022-11-28 17:35:39 +0000 |
| commit | fc710832eadb31c747fb2997d882c5a08de2c10e (patch) | |
| tree | e27c4869ebce7a4eb419de191f1a745e48f107d0 /compiler/rustc_borrowck/src/diagnostics | |
| parent | f12e772b83c3ff6a099a66920f73fa145e21b0f3 (diff) | |
| download | rust-fc710832eadb31c747fb2997d882c5a08de2c10e.tar.gz rust-fc710832eadb31c747fb2997d882c5a08de2c10e.zip | |
partially_normalize_... -> At::normalize
Diffstat (limited to 'compiler/rustc_borrowck/src/diagnostics')
| -rw-r--r-- | compiler/rustc_borrowck/src/diagnostics/bound_region_errors.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_borrowck/src/diagnostics/bound_region_errors.rs b/compiler/rustc_borrowck/src/diagnostics/bound_region_errors.rs index b99bfda1a51..009787cc94c 100644 --- a/compiler/rustc_borrowck/src/diagnostics/bound_region_errors.rs +++ b/compiler/rustc_borrowck/src/diagnostics/bound_region_errors.rs @@ -291,9 +291,9 @@ where // FIXME(lqd): Unify and de-duplicate the following with the actual // `rustc_traits::type_op::type_op_normalize` query to allow the span we need in the // `ObligationCause`. The normalization results are currently different between - // `AtExt::normalize` used in the query and `normalize` called below: the former fails - // to normalize the `nll/relate_tys/impl-fn-ignore-binder-via-bottom.rs` test. Check - // after #85499 lands to see if its fixes have erased this difference. + // `QueryNormalizeExt::query_normalize` used in the query and `normalize` called below: + // the former fails to normalize the `nll/relate_tys/impl-fn-ignore-binder-via-bottom.rs` test. + // Check after #85499 lands to see if its fixes have erased this difference. let (param_env, value) = key.into_parts(); let _ = ocx.normalize(cause, param_env, value.value); |
