@@ -399,7 +399,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
399
399
/// takes on must be a value that each of the regions within the
400
400
/// SCC could have as well. This implies that the SCC must have
401
401
/// the minimum, or narrowest, universe.
402
- #[ instrument( level= "debug" , skip( constraint_sccs, definitions) ) ]
402
+ #[ instrument( level = "debug" , skip( constraint_sccs, definitions) ) ]
403
403
fn compute_scc_universes (
404
404
constraint_sccs : & Sccs < RegionVid , ConstraintSccIndex > ,
405
405
definitions : & IndexSlice < RegionVid , RegionDefinition < ' tcx > > ,
@@ -760,7 +760,6 @@ impl<'tcx> RegionInferenceContext<'tcx> {
760
760
debug ! ( ?scc_b) ;
761
761
debug ! ( "scc_b is: {:?}" , self . scc_representatives[ scc_b] ) ;
762
762
763
-
764
763
// ...and add elements from `B` into `A`. One complication
765
764
// arises because of universes: If `B` contains something
766
765
// that `A` cannot name, then `A` can only contain `B` if
@@ -909,8 +908,10 @@ impl<'tcx> RegionInferenceContext<'tcx> {
909
908
// scc_a's declared universe (typically, both are ROOT), then
910
909
// it cannot contain any problematic universe elements.
911
910
if universe_a. can_name ( self . scc_universes [ scc_b] ) {
912
- debug ! ( "{universe_a:?} of {scc_a:?} can name declared universe {declared_universe:?} of {scc_b:?}" ,
913
- declared_universe = self . scc_universes[ scc_b] ) ;
911
+ debug ! (
912
+ "{universe_a:?} of {scc_a:?} can name declared universe {declared_universe:?} of {scc_b:?}" ,
913
+ declared_universe = self . scc_universes[ scc_b]
914
+ ) ;
914
915
return true ;
915
916
}
916
917
0 commit comments