@@ -140,15 +140,6 @@ pub trait InferCtxtExt<'tcx> {
140
140
first_own_region_index : usize ,
141
141
) ;
142
142
143
- /*private*/
144
- fn member_constraint_feature_gate (
145
- & self ,
146
- opaque_defn : & OpaqueTypeDecl < ' tcx > ,
147
- opaque_type_def_id : DefId ,
148
- conflict1 : ty:: Region < ' tcx > ,
149
- conflict2 : ty:: Region < ' tcx > ,
150
- ) -> bool ;
151
-
152
143
fn infer_opaque_definition_from_instantiation (
153
144
& self ,
154
145
def_id : DefId ,
@@ -490,9 +481,6 @@ impl<'a, 'tcx> InferCtxtExt<'tcx> for InferCtxt<'a, 'tcx> {
490
481
// ['a, 'b, 'c]`, where `'a..'c` are the
491
482
// regions that appear in the impl trait.
492
483
493
- // For now, enforce a feature gate outside of async functions.
494
- self . member_constraint_feature_gate ( opaque_defn, def_id, lr, subst_region) ;
495
-
496
484
return self . generate_member_constraint (
497
485
concrete_ty,
498
486
opaque_defn,
@@ -559,60 +547,6 @@ impl<'a, 'tcx> InferCtxtExt<'tcx> for InferCtxt<'a, 'tcx> {
559
547
} ) ;
560
548
}
561
549
562
- /// Member constraints are presently feature-gated except for
563
- /// async-await. We expect to lift this once we've had a bit more
564
- /// time.
565
- fn member_constraint_feature_gate (
566
- & self ,
567
- opaque_defn : & OpaqueTypeDecl < ' tcx > ,
568
- opaque_type_def_id : DefId ,
569
- conflict1 : ty:: Region < ' tcx > ,
570
- conflict2 : ty:: Region < ' tcx > ,
571
- ) -> bool {
572
- // If we have `#![feature(member_constraints)]`, no problems.
573
- if self . tcx . features ( ) . member_constraints {
574
- return false ;
575
- }
576
-
577
- let span = self . tcx . def_span ( opaque_type_def_id) ;
578
-
579
- // Without a feature-gate, we only generate member-constraints for async-await.
580
- let context_name = match opaque_defn. origin {
581
- // No feature-gate required for `async fn`.
582
- hir:: OpaqueTyOrigin :: AsyncFn => return false ,
583
-
584
- // Otherwise, generate the label we'll use in the error message.
585
- hir:: OpaqueTyOrigin :: Binding
586
- | hir:: OpaqueTyOrigin :: FnReturn
587
- | hir:: OpaqueTyOrigin :: TyAlias
588
- | hir:: OpaqueTyOrigin :: Misc => "impl Trait" ,
589
- } ;
590
- let msg = format ! ( "ambiguous lifetime bound in `{}`" , context_name) ;
591
- let mut err = self . tcx . sess . struct_span_err ( span, & msg) ;
592
-
593
- let conflict1_name = conflict1. to_string ( ) ;
594
- let conflict2_name = conflict2. to_string ( ) ;
595
- let label_owned;
596
- let label = match ( & * conflict1_name, & * conflict2_name) {
597
- ( "'_" , "'_" ) => "the elided lifetimes here do not outlive one another" ,
598
- _ => {
599
- label_owned = format ! (
600
- "neither `{}` nor `{}` outlives the other" ,
601
- conflict1_name, conflict2_name,
602
- ) ;
603
- & label_owned
604
- }
605
- } ;
606
- err. span_label ( span, label) ;
607
-
608
- if self . tcx . sess . is_nightly_build ( ) {
609
- err. help ( "add #![feature(member_constraints)] to the crate attributes to enable" ) ;
610
- }
611
-
612
- err. emit ( ) ;
613
- true
614
- }
615
-
616
550
/// Given the fully resolved, instantiated type for an opaque
617
551
/// type, i.e., the value of an inference variable like C1 or C2
618
552
/// (*), computes the "definition type" for an opaque type
0 commit comments