about summary refs log tree commit diff
path: root/compiler/rustc_traits/src
diff options
context:
space:
mode:
authorJack Huey <31162821+jackh726@users.noreply.github.com>2022-09-11 03:53:54 -0400
committerJack Huey <31162821+jackh726@users.noreply.github.com>2023-02-09 20:38:27 -0500
commit1a663c0f53c71cbf69a982f699fbb00cdfce48f8 (patch)
tree24cffaaee470c90d260f7a759ae4767ab3ce4434 /compiler/rustc_traits/src
parent8996ea93b6e554148c4286e62b613f12a3ee505c (diff)
downloadrust-1a663c0f53c71cbf69a982f699fbb00cdfce48f8.tar.gz
rust-1a663c0f53c71cbf69a982f699fbb00cdfce48f8.zip
Cleanup free_region_relations a bit
Diffstat (limited to 'compiler/rustc_traits/src')
-rw-r--r--compiler/rustc_traits/src/implied_outlives_bounds.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_traits/src/implied_outlives_bounds.rs b/compiler/rustc_traits/src/implied_outlives_bounds.rs
index fe633d687d9..e2fb80d51ca 100644
--- a/compiler/rustc_traits/src/implied_outlives_bounds.rs
+++ b/compiler/rustc_traits/src/implied_outlives_bounds.rs
@@ -81,6 +81,7 @@ fn compute_implied_outlives_bounds<'tcx>(
         // From the full set of obligations, just filter down to the
         // region relationships.
         outlives_bounds.extend(obligations.into_iter().filter_map(|obligation| {
+            debug!(?obligation);
             assert!(!obligation.has_escaping_bound_vars());
             match obligation.predicate.kind().no_bound_vars() {
                 None => None,