File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1618,6 +1618,7 @@ fn predicates_defined_on<'a, 'tcx>(
1618
1618
. predicates
1619
1619
. extend ( inferred_outlives. iter ( ) . map ( |& p| ( p, span) ) ) ;
1620
1620
}
1621
+ debug ! ( "predicates_defined_on({:?}) = {:?}" , def_id, result) ;
1621
1622
result
1622
1623
}
1623
1624
@@ -1645,6 +1646,7 @@ fn predicates_of<'a, 'tcx>(
1645
1646
. predicates
1646
1647
. push ( ( ty:: TraitRef :: identity ( tcx, def_id) . to_predicate ( ) , span) ) ;
1647
1648
}
1649
+ debug ! ( "predicates_of(def_id={:?}) = {:?}" , def_id, result) ;
1648
1650
result
1649
1651
}
1650
1652
@@ -1972,10 +1974,12 @@ fn explicit_predicates_of<'a, 'tcx>(
1972
1974
) ;
1973
1975
}
1974
1976
1975
- Lrc :: new ( ty:: GenericPredicates {
1977
+ let result = Lrc :: new ( ty:: GenericPredicates {
1976
1978
parent : generics. parent ,
1977
1979
predicates,
1978
- } )
1980
+ } ) ;
1981
+ debug ! ( "explicit_predicates_of(def_id={:?}) = {:?}" , def_id, result) ;
1982
+ result
1979
1983
}
1980
1984
1981
1985
pub enum SizedByDefault {
You can’t perform that action at this time.
0 commit comments