diff options
| author | bors <bors@rust-lang.org> | 2024-05-10 18:11:02 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-05-10 18:11:02 +0000 |
| commit | 2cce0885840cd171cb3a8677af795d0abd2dc77c (patch) | |
| tree | 092dca92988edeae15f1903d06eb1dd3ea2aa045 /compiler/rustc_const_eval | |
| parent | 6a19a87097fbf430d0fe09e15d9266a990c1e0f6 (diff) | |
| parent | 6f77bfe8b63b2e1bba71a0eb4973ccd17fe8885c (diff) | |
| download | rust-2cce0885840cd171cb3a8677af795d0abd2dc77c.tar.gz rust-2cce0885840cd171cb3a8677af795d0abd2dc77c.zip | |
Auto merge of #124952 - compiler-errors:no-error, r=lcnr
Rename some `FulfillmentErrorCode`/`ObligationCauseCode` variants to be less redundant 1. Rename some `FulfillmentErrorCode` variants. 2. Always use `ObligationCauseCode::` to prefix a code, rather than using a glob import and naming them through `traits::`. 3. Rename some `ObligationCauseCode` variants -- I wasn't particularly thorough with thinking of a new names for these, so could workshop them if necessary. 4. Misc stuff from renaming. r? lcnr
Diffstat (limited to 'compiler/rustc_const_eval')
| -rw-r--r-- | compiler/rustc_const_eval/src/transform/check_consts/check.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/transform/check_consts/check.rs b/compiler/rustc_const_eval/src/transform/check_consts/check.rs index f9786acfc6c..d43dc467c0f 100644 --- a/compiler/rustc_const_eval/src/transform/check_consts/check.rs +++ b/compiler/rustc_const_eval/src/transform/check_consts/check.rs @@ -738,7 +738,7 @@ impl<'tcx> Visitor<'tcx> for Checker<'_, 'tcx> { let cause = ObligationCause::new( terminator.source_info.span, self.body.source.def_id().expect_local(), - ObligationCauseCode::ItemObligation(callee), + ObligationCauseCode::WhereClause(callee), ); let normalized_predicates = ocx.normalize(&cause, param_env, predicates); ocx.register_obligations(traits::predicates_for_generics( |
