about summary refs log tree commit diff
path: root/compiler/rustc_trait_selection
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2020-11-13 14:01:16 -0300
committerSantiago Pastorino <spastorino@gmail.com>2020-11-27 11:23:47 -0300
commit2ca4964db5d263a8f9222846bd70a7f26cf414cf (patch)
tree29aa746f704a7e8b8a45a63ed1832b17c11b40e2 /compiler/rustc_trait_selection
parent24dcf6f7a29d7577a3c3448046d2d48b2fee59de (diff)
downloadrust-2ca4964db5d263a8f9222846bd70a7f26cf414cf.tar.gz
rust-2ca4964db5d263a8f9222846bd70a7f26cf414cf.zip
Allow to self reference associated types in where clauses
Diffstat (limited to 'compiler/rustc_trait_selection')
-rw-r--r--compiler/rustc_trait_selection/src/traits/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/mod.rs b/compiler/rustc_trait_selection/src/traits/mod.rs
index 2d7df2ddd11..d0276288284 100644
--- a/compiler/rustc_trait_selection/src/traits/mod.rs
+++ b/compiler/rustc_trait_selection/src/traits/mod.rs
@@ -65,7 +65,8 @@ pub use self::util::{
     get_vtable_index_of_object_method, impl_item_is_final, predicate_for_trait_def, upcast_choices,
 };
 pub use self::util::{
-    supertrait_def_ids, supertraits, transitive_bounds, SupertraitDefIds, Supertraits,
+    supertrait_def_ids, supertraits, transitive_bounds, transitive_bounds_that_define_assoc_type,
+    SupertraitDefIds, Supertraits,
 };
 
 pub use self::chalk_fulfill::FulfillmentContext as ChalkFulfillmentContext;