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 0b4299a commit 929e82fCopy full SHA for 929e82f
compiler/rustc_borrowck/src/region_infer/mod.rs
@@ -560,6 +560,11 @@ impl<'tcx> RegionInferenceContext<'tcx> {
560
// universe of the scc can name this region.
561
let scc_universe = self.scc_universes[scc];
562
if scc_universe.can_name(placeholder.universe) {
563
+ debug!(
564
+ "init_free_and_bound_regions: placeholder {:?} *is* \
565
+ compatible with universe {:?} of its SCC {:?}",
566
+ placeholder, scc_universe, scc,
567
+ );
568
self.scc_values.add_element(scc, placeholder);
569
} else {
570
debug!(
0 commit comments