@@ -54,18 +54,27 @@ impl<'tcx> FulfillmentCtxt<'tcx> {
54
54
55
55
fn track_fulfillment_errors < ' b , ' a : ' b > (
56
56
& ' a self ,
57
+ infcx : & InferCtxt < ' tcx > ,
57
58
errors : impl IntoIterator < Item = & ' b FulfillmentError < ' tcx > > ,
58
59
) {
59
60
if let Some ( tracked_obligations) = & self . tracked_obligations {
60
- tracked_obligations. borrow_mut ( ) . extend (
61
- errors. into_iter ( ) . map ( |error| FulfilledObligation :: Failure ( error. clone ( ) ) ) ,
62
- ) ;
61
+ tracked_obligations. borrow_mut ( ) . push ( FulfilledObligation :: Failed {
62
+ infcx : infcx. clone ( ) ,
63
+ data : errors. into_iter ( ) . map ( Clone :: clone) . collect :: < Vec < _ > > ( ) ,
64
+ } ) ;
63
65
}
64
66
}
65
67
66
- fn track_fulfillment_success ( & self , predicate : & PredicateObligation < ' tcx > ) {
68
+ fn track_fulfillment_success (
69
+ & self ,
70
+ infcx : & InferCtxt < ' tcx > ,
71
+ predicate : & PredicateObligation < ' tcx > ,
72
+ ) {
67
73
if let Some ( tracked_obligations) = & self . tracked_obligations {
68
- tracked_obligations. borrow_mut ( ) . push ( FulfilledObligation :: Success ( predicate. clone ( ) ) ) ;
74
+ tracked_obligations. borrow_mut ( ) . push ( FulfilledObligation :: Success {
75
+ infcx : infcx. clone ( ) ,
76
+ data : predicate. clone ( ) ,
77
+ } ) ;
69
78
}
70
79
}
71
80
}
@@ -114,7 +123,7 @@ impl<'tcx> TraitEngine<'tcx> for FulfillmentCtxt<'tcx> {
114
123
} )
115
124
. collect ( ) ;
116
125
117
- self . track_fulfillment_errors ( & errors) ;
126
+ self . track_fulfillment_errors ( infcx , & errors) ;
118
127
119
128
errors
120
129
}
@@ -133,7 +142,7 @@ impl<'tcx> TraitEngine<'tcx> for FulfillmentCtxt<'tcx> {
133
142
let ( changed, certainty, nested_goals) =
134
143
match infcx. evaluate_root_goal ( goal, GenerateProofTree :: IfEnabled ) . 0 {
135
144
Ok ( result) => {
136
- self . track_fulfillment_success ( & obligation) ;
145
+ self . track_fulfillment_success ( infcx , & obligation) ;
137
146
result
138
147
}
139
148
Err ( NoSolution ) => {
@@ -214,7 +223,7 @@ impl<'tcx> TraitEngine<'tcx> for FulfillmentCtxt<'tcx> {
214
223
}
215
224
}
216
225
217
- self . track_fulfillment_errors ( & errors) ;
226
+ self . track_fulfillment_errors ( infcx , & errors) ;
218
227
219
228
errors
220
229
}
0 commit comments