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 efdd9e8 commit 67defd7Copy full SHA for 67defd7
compiler/rustc_borrowck/src/region_infer/mod.rs
@@ -981,8 +981,6 @@ impl<'tcx> RegionInferenceContext<'tcx> {
981
return false;
982
};
983
984
- debug!("subject = {:?}", subject);
985
-
986
let r_scc = self.constraint_sccs.scc(*lower_bound);
987
988
debug!(
@@ -1063,7 +1061,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
1063
1061
/// variables in the type `T` with an equal universal region from the
1064
1062
/// closure signature.
1065
/// This is not always possible, so this is a fallible process.
1066
- #[instrument(level = "debug", skip(self, infcx))]
+ #[instrument(level = "debug", skip(self, infcx), ret)]
1067
fn try_promote_type_test_subject(
1068
&self,
1069
infcx: &InferCtxt<'tcx>,
0 commit comments