We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 872db2a commit a04e81eCopy full SHA for a04e81e
compiler/rustc_trait_selection/src/solve/search_graph.rs
@@ -204,6 +204,10 @@ impl<'tcx> SearchGraph<'tcx> {
204
break 'global;
205
};
206
207
+ // If we're building a proof tree and the current cache entry does not
208
+ // contain a proof tree, we do not use the entry but instead recompute
209
+ // the goal. We simply overwrite the existing entry once we're done,
210
+ // caching the proof tree.
211
if !inspect.is_noop() {
212
if let Some(revisions) = proof_tree {
213
inspect.goal_evaluation_kind(
0 commit comments