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 f66c51a commit cdc4621Copy full SHA for cdc4621
compiler/rustc_trait_selection/src/solve/inspect/build.rs
@@ -467,7 +467,7 @@ impl<'tcx> ProofTreeBuilder<'tcx> {
467
/// of the probe into the parent.
468
pub fn integrate_snapshot(&mut self, probe: ProofTreeBuilder<'tcx>) {
469
if let Some(this) = self.as_mut() {
470
- match (this, probe.state.unwrap().tree) {
+ match (this, *probe.state.unwrap()) {
471
(
472
DebugSolver::Probe(WipProbe { steps, .. })
473
| DebugSolver::GoalEvaluationStep(WipGoalEvaluationStep {
0 commit comments