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 7081997 commit d5dc024Copy full SHA for d5dc024
compiler/rustc_borrowck/src/region_infer/mod.rs
@@ -755,10 +755,13 @@ impl<'tcx> RegionInferenceContext<'tcx> {
755
#[instrument(skip(self), level = "debug")]
756
fn compute_value_for_scc(&mut self, scc_a: ConstraintSccIndex) {
757
let constraint_sccs = self.constraint_sccs.clone();
758
+ debug!("scc_a is: {:?}", self.scc_representatives[scc_a]);
759
760
// Walk each SCC `B` such that `A: B`...
761
for &scc_b in constraint_sccs.successors(scc_a) {
762
debug!(?scc_b);
763
+ debug!("scc_b is: {:?}", self.scc_representatives[scc_b]);
764
+
765
766
// ...and add elements from `B` into `A`. One complication
767
// arises because of universes: If `B` contains something
0 commit comments