5
5
6
6
use rustc_infer:: infer:: TyCtxtInferExt ;
7
7
use rustc_infer:: traits:: { FulfillmentErrorCode , TraitEngineExt as _} ;
8
- use rustc_middle:: traits:: { CodegenObligationError , DefiningAnchor } ;
8
+ use rustc_middle:: traits:: CodegenObligationError ;
9
9
use rustc_middle:: ty:: { self , TyCtxt } ;
10
10
use rustc_trait_selection:: traits:: error_reporting:: TypeErrCtxtExt ;
11
11
use rustc_trait_selection:: traits:: {
@@ -29,13 +29,7 @@ pub fn codegen_select_candidate<'tcx>(
29
29
30
30
// Do the initial selection for the obligation. This yields the
31
31
// shallow result we are looking for -- that is, what specific impl.
32
- let infcx = tcx
33
- . infer_ctxt ( )
34
- . ignoring_regions ( )
35
- . with_opaque_type_inference ( DefiningAnchor :: Bubble )
36
- . build ( ) ;
37
- //~^ HACK `Bubble` is required for
38
- // this test to pass: type-alias-impl-trait/assoc-projection-ice.rs
32
+ let infcx = tcx. infer_ctxt ( ) . ignoring_regions ( ) . build ( ) ;
39
33
let mut selcx = SelectionContext :: new ( & infcx) ;
40
34
41
35
let obligation_cause = ObligationCause :: dummy ( ) ;
@@ -79,10 +73,5 @@ pub fn codegen_select_candidate<'tcx>(
79
73
let impl_source = infcx. resolve_vars_if_possible ( impl_source) ;
80
74
let impl_source = infcx. tcx . erase_regions ( impl_source) ;
81
75
82
- // Opaque types may have gotten their hidden types constrained, but we can ignore them safely
83
- // as they will get constrained elsewhere, too.
84
- // (ouz-a) This is required for `type-alias-impl-trait/assoc-projection-ice.rs` to pass
85
- let _ = infcx. take_opaque_types ( ) ;
86
-
87
76
Ok ( & * tcx. arena . alloc ( impl_source) )
88
77
}
0 commit comments