Skip to content

Commit fe53cac

Browse files
committed
Apply PR feedback.
1 parent c0ae62e commit fe53cac

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

compiler/rustc_hir_analysis/src/impl_wf_check/min_specialization.rs

+9-10
Original file line numberDiff line numberDiff line change
@@ -426,15 +426,13 @@ fn trait_predicates_eq<'tcx>(
426426
predicate2: ty::Predicate<'tcx>,
427427
span: Span,
428428
) -> bool {
429-
let pred1_kind = predicate1.kind().no_bound_vars();
430-
let pred2_kind = predicate2.kind().no_bound_vars();
429+
let pred1_kind = predicate1.kind().skip_binder();
430+
let pred2_kind = predicate2.kind().skip_binder();
431431
let (trait_pred1, trait_pred2) = match (pred1_kind, pred2_kind) {
432-
(Some(ty::PredicateKind::Trait(pred1)), Some(ty::PredicateKind::Trait(pred2))) => {
433-
(pred1, pred2)
434-
}
432+
(ty::PredicateKind::Trait(pred1), ty::PredicateKind::Trait(pred2)) => (pred1, pred2),
435433
// Just use plain syntactic equivalence if either of the predicates aren't
436434
// trait predicates or have bound vars.
437-
_ => return pred1_kind == pred2_kind,
435+
_ => return predicate1 == predicate2,
438436
};
439437

440438
let predicates_equal_modulo_constness = {
@@ -451,10 +449,11 @@ fn trait_predicates_eq<'tcx>(
451449

452450
// Check that the predicate on the specializing impl is at least as const as
453451
// the one on the base.
454-
if trait_pred2.constness == ty::BoundConstness::ConstIfConst
455-
&& trait_pred1.constness == ty::BoundConstness::NotConst
456-
{
457-
tcx.sess.struct_span_err(span, "missing `~const` qualifier").emit();
452+
match (trait_pred2.constness, trait_pred1.constness) {
453+
(ty::BoundConstness::ConstIfConst, ty::BoundConstness::NotConst) => {
454+
tcx.sess.struct_span_err(span, "missing `~const` qualifier for specialization").emit();
455+
}
456+
_ => {}
458457
}
459458

460459
true

src/test/ui/rfc-2632-const-trait-impl/specialization/const-default-bound-non-const-specialized-bound.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error: missing `~const` qualifier
1+
error: missing `~const` qualifier for specialization
22
--> $DIR/const-default-bound-non-const-specialized-bound.rs:28:8
33
|
44
LL | T: Foo,

0 commit comments

Comments
 (0)