Skip to content

Commit 364cfdb

Browse files
authored
Unrolled build for rust-lang#124381
Rollup merge of rust-lang#124381 - compiler-errors:derived-for-wf, r=lcnr Renamed `DerivedObligation` to `WellFormedDeriveObligation` It's used when computing `WellFormed` obligations, so let's give it a less ambiguous name.
2 parents 3a36386 + 132f8ce commit 364cfdb

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

compiler/rustc_middle/src/traits/mod.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -328,11 +328,16 @@ pub enum ObligationCauseCode<'tcx> {
328328
/// `static` items must have `Sync` type.
329329
SharedStatic,
330330

331+
/// Derived obligation (i.e. theoretical `where` clause) on a built-in
332+
/// implementation like `Copy` or `Sized`.
331333
BuiltinDerivedObligation(DerivedObligationCause<'tcx>),
332334

335+
/// Derived obligation (i.e. `where` clause) on an user-provided impl
336+
/// or a trait alias.
333337
ImplDerivedObligation(Box<ImplDerivedObligationCause<'tcx>>),
334338

335-
DerivedObligation(DerivedObligationCause<'tcx>),
339+
/// Derived obligation for WF goals.
340+
WellFormedDerivedObligation(DerivedObligationCause<'tcx>),
336341

337342
FunctionArgumentObligation {
338343
/// The node of the relevant argument in the function call.
@@ -534,7 +539,7 @@ impl<'tcx> ObligationCauseCode<'tcx> {
534539
match self {
535540
FunctionArgumentObligation { parent_code, .. } => Some((parent_code, None)),
536541
BuiltinDerivedObligation(derived)
537-
| DerivedObligation(derived)
542+
| WellFormedDerivedObligation(derived)
538543
| ImplDerivedObligation(box ImplDerivedObligationCause { derived, .. }) => {
539544
Some((&derived.parent_code, Some(derived.parent_trait_pred)))
540545
}

compiler/rustc_trait_selection/src/traits/error_reporting/on_unimplemented.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
128128
match obligation.cause.code() {
129129
ObligationCauseCode::BuiltinDerivedObligation(..)
130130
| ObligationCauseCode::ImplDerivedObligation(..)
131-
| ObligationCauseCode::DerivedObligation(..) => {}
131+
| ObligationCauseCode::WellFormedDerivedObligation(..) => {}
132132
_ => {
133133
// this is a "direct", user-specified, rather than derived,
134134
// obligation.

compiler/rustc_trait_selection/src/traits/error_reporting/suggestions.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2294,7 +2294,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
22942294

22952295
next_code = Some(&cause.derived.parent_code);
22962296
}
2297-
ObligationCauseCode::DerivedObligation(derived_obligation)
2297+
ObligationCauseCode::WellFormedDerivedObligation(derived_obligation)
22982298
| ObligationCauseCode::BuiltinDerivedObligation(derived_obligation) => {
22992299
let ty = derived_obligation.parent_trait_pred.skip_binder().self_ty();
23002300
debug!(
@@ -3423,7 +3423,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
34233423
)
34243424
});
34253425
}
3426-
ObligationCauseCode::DerivedObligation(ref data) => {
3426+
ObligationCauseCode::WellFormedDerivedObligation(ref data) => {
34273427
let parent_trait_ref = self.resolve_vars_if_possible(data.parent_trait_pred);
34283428
let parent_predicate = parent_trait_ref;
34293429
// #74711: avoid a stack overflow

compiler/rustc_trait_selection/src/traits/wf.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ impl<'a, 'tcx> WfPredicates<'a, 'tcx> {
381381
if let Some(parent_trait_pred) = predicate.to_opt_poly_trait_pred() {
382382
cause = cause.derived_cause(
383383
parent_trait_pred,
384-
traits::ObligationCauseCode::DerivedObligation,
384+
traits::ObligationCauseCode::WellFormedDerivedObligation,
385385
);
386386
}
387387
extend_cause_with_original_assoc_item_obligation(tcx, item, &mut cause, predicate);

0 commit comments

Comments
 (0)