1
Fork 0

Rollup merge of #132026 - lcnr:stabilize-coherence-again, r=compiler-errors

analyse: remove unused uncanonicalized field

This field is unused and was only relevant when actually printing proof trees. Right now this simply causes proof tree building to leak a bunch of inference vars 😁

r? ``@compiler-errors``
This commit is contained in:
Matthias Krüger 2024-10-23 06:51:24 +02:00 committed by GitHub
commit 5b602201ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 14 additions and 25 deletions

View file

@ -344,7 +344,7 @@ impl<'a, 'tcx> InspectGoal<'a, 'tcx> {
};
let mut nested_goals = vec![];
self.candidates_recur(&mut candidates, &mut nested_goals, &last_eval_step.evaluation);
self.candidates_recur(&mut candidates, &mut nested_goals, &last_eval_step);
candidates
}