@@ -462,12 +462,16 @@ fn check_gat_where_clauses(tcx: TyCtxt<'_>, associated_items: &[hir::TraitItemRe
462
462
let mut unsatisfied_bounds: Vec < _ > = required_bounds
463
463
. into_iter ( )
464
464
. filter ( |clause| match clause. kind ( ) . skip_binder ( ) {
465
- ty:: PredicateKind :: RegionOutlives ( ty:: OutlivesPredicate ( a, b) ) => {
465
+ ty:: PredicateKind :: Clause ( ty:: Clause :: RegionOutlives ( ty:: OutlivesPredicate (
466
+ a,
467
+ b,
468
+ ) ) ) => {
466
469
!region_known_to_outlive ( tcx, gat_hir, param_env, & FxIndexSet :: default ( ) , a, b)
467
470
}
468
- ty:: PredicateKind :: TypeOutlives ( ty:: OutlivesPredicate ( a, b) ) => {
469
- !ty_known_to_outlive ( tcx, gat_hir, param_env, & FxIndexSet :: default ( ) , a, b)
470
- }
471
+ ty:: PredicateKind :: Clause ( ty:: Clause :: TypeOutlives ( ty:: OutlivesPredicate (
472
+ a,
473
+ b,
474
+ ) ) ) => !ty_known_to_outlive ( tcx, gat_hir, param_env, & FxIndexSet :: default ( ) , a, b) ,
471
475
_ => bug ! ( "Unexpected PredicateKind" ) ,
472
476
} )
473
477
. map ( |clause| clause. to_string ( ) )
@@ -599,8 +603,9 @@ fn gather_gat_bounds<'tcx, T: TypeFoldable<'tcx>>(
599
603
} ) ) ;
600
604
// The predicate we expect to see. (In our example,
601
605
// `Self: 'me`.)
602
- let clause =
603
- ty:: PredicateKind :: TypeOutlives ( ty:: OutlivesPredicate ( ty_param, region_param) ) ;
606
+ let clause = ty:: PredicateKind :: Clause ( ty:: Clause :: TypeOutlives (
607
+ ty:: OutlivesPredicate ( ty_param, region_param) ,
608
+ ) ) ;
604
609
let clause = tcx. mk_predicate ( ty:: Binder :: dummy ( clause) ) ;
605
610
bounds. insert ( clause) ;
606
611
}
@@ -636,9 +641,8 @@ fn gather_gat_bounds<'tcx, T: TypeFoldable<'tcx>>(
636
641
name : region_b_param. name ,
637
642
} ) ) ;
638
643
// The predicate we expect to see.
639
- let clause = ty:: PredicateKind :: RegionOutlives ( ty:: OutlivesPredicate (
640
- region_a_param,
641
- region_b_param,
644
+ let clause = ty:: PredicateKind :: Clause ( ty:: Clause :: RegionOutlives (
645
+ ty:: OutlivesPredicate ( region_a_param, region_b_param) ,
642
646
) ) ;
643
647
let clause = tcx. mk_predicate ( ty:: Binder :: dummy ( clause) ) ;
644
648
bounds. insert ( clause) ;
@@ -1784,7 +1788,7 @@ fn receiver_is_implemented<'tcx>(
1784
1788
let tcx = wfcx. tcx ( ) ;
1785
1789
let trait_ref = ty:: Binder :: dummy ( tcx. mk_trait_ref ( receiver_trait_def_id, [ receiver_ty] ) ) ;
1786
1790
1787
- let obligation = traits:: Obligation :: new ( tcx, cause, wfcx. param_env , trait_ref. without_const ( ) ) ;
1791
+ let obligation = traits:: Obligation :: new ( tcx, cause, wfcx. param_env , trait_ref) ;
1788
1792
1789
1793
if wfcx. infcx . predicate_must_hold_modulo_regions ( & obligation) {
1790
1794
true
0 commit comments