@@ -12,13 +12,14 @@ use rustc_infer::traits::{
12
12
use rustc_middle:: bug;
13
13
use rustc_middle:: ty:: error:: { ExpectedFound , TypeError } ;
14
14
use rustc_middle:: ty:: { self , TyCtxt } ;
15
+ use rustc_next_trait_solver:: solve:: { GenerateProofTree , SolverDelegateEvalExt as _} ;
15
16
use rustc_span:: symbol:: sym;
16
17
17
18
use crate :: traits:: { FulfillmentError , FulfillmentErrorCode , ScrubbedTraitError } ;
18
19
19
- use super :: eval_ctxt :: GenerateProofTree ;
20
+ use super :: infcx :: SolverDelegate ;
20
21
use super :: inspect:: { self , ProofTreeInferCtxtExt , ProofTreeVisitor } ;
21
- use super :: { Certainty , InferCtxtEvalExt } ;
22
+ use super :: Certainty ;
22
23
23
24
/// A trait engine using the new trait solver.
24
25
///
@@ -83,7 +84,9 @@ impl<'tcx> ObligationStorage<'tcx> {
83
84
// change.
84
85
self . overflowed . extend ( self . pending . extract_if ( |o| {
85
86
let goal = o. clone ( ) . into ( ) ;
86
- let result = infcx. evaluate_root_goal ( goal, GenerateProofTree :: No ) . 0 ;
87
+ let result = <& SolverDelegate < ' tcx > >:: from ( infcx)
88
+ . evaluate_root_goal ( goal, GenerateProofTree :: No )
89
+ . 0 ;
87
90
match result {
88
91
Ok ( ( has_changed, _) ) => has_changed,
89
92
_ => false ,
@@ -165,7 +168,9 @@ where
165
168
let mut has_changed = false ;
166
169
for obligation in self . obligations . unstalled_for_select ( ) {
167
170
let goal = obligation. clone ( ) . into ( ) ;
168
- let result = infcx. evaluate_root_goal ( goal, GenerateProofTree :: No ) . 0 ;
171
+ let result = <& SolverDelegate < ' tcx > >:: from ( infcx)
172
+ . evaluate_root_goal ( goal, GenerateProofTree :: No )
173
+ . 0 ;
169
174
self . inspect_evaluated_obligation ( infcx, & obligation, & result) ;
170
175
let ( changed, certainty) = match result {
171
176
Ok ( result) => result,
@@ -288,7 +293,10 @@ fn fulfillment_error_for_stalled<'tcx>(
288
293
root_obligation : PredicateObligation < ' tcx > ,
289
294
) -> FulfillmentError < ' tcx > {
290
295
let ( code, refine_obligation) = infcx. probe ( |_| {
291
- match infcx. evaluate_root_goal ( root_obligation. clone ( ) . into ( ) , GenerateProofTree :: No ) . 0 {
296
+ match <& SolverDelegate < ' tcx > >:: from ( infcx)
297
+ . evaluate_root_goal ( root_obligation. clone ( ) . into ( ) , GenerateProofTree :: No )
298
+ . 0
299
+ {
292
300
Ok ( ( _, Certainty :: Maybe ( MaybeCause :: Ambiguity ) ) ) => {
293
301
( FulfillmentErrorCode :: Ambiguity { overflow : None } , true )
294
302
}
0 commit comments