about summary refs log tree commit diff
path: root/compiler/rustc_trait_selection/src/traits/mod.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-08-02 12:59:42 -0400
committerMichael Goulet <michael@errs.io>2024-08-05 10:48:20 -0400
commit34e087890c25e259955d41d2830e603a75e62463 (patch)
tree8ce05d1c3c3afd84837504e3e3903bd59f974249 /compiler/rustc_trait_selection/src/traits/mod.rs
parent53676730146e38e4697b6204c2ee61a9fd6b7e51 (diff)
downloadrust-34e087890c25e259955d41d2830e603a75e62463.tar.gz
rust-34e087890c25e259955d41d2830e603a75e62463.zip
Don't re-elaborated already elaborated caller bounds in method probe
Diffstat (limited to 'compiler/rustc_trait_selection/src/traits/mod.rs')
-rw-r--r--compiler/rustc_trait_selection/src/traits/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/mod.rs b/compiler/rustc_trait_selection/src/traits/mod.rs
index f7b8d99593e..a350b76a704 100644
--- a/compiler/rustc_trait_selection/src/traits/mod.rs
+++ b/compiler/rustc_trait_selection/src/traits/mod.rs
@@ -62,7 +62,7 @@ pub use self::specialize::{
 };
 pub use self::structural_normalize::StructurallyNormalizeExt;
 pub use self::util::{
-    elaborate, expand_trait_aliases, impl_item_is_final, supertraits, transitive_bounds,
+    elaborate, expand_trait_aliases, impl_item_is_final, supertraits,
     transitive_bounds_that_define_assoc_item, upcast_choices, with_replaced_escaping_bound_vars,
     BoundVarReplacer, PlaceholderReplacer, TraitAliasExpander, TraitAliasExpansionInfo,
 };