diff options
| author | Michael Goulet <michael@errs.io> | 2024-12-04 02:04:26 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2025-01-15 01:26:24 +0000 |
| commit | 824a867e82b540503f8ae1f589445d9f9a8ce941 (patch) | |
| tree | 593d3ceef3b46a46865bdfc2ac310977eac70ceb /compiler/rustc_trait_selection/src/traits/mod.rs | |
| parent | 8361aef0d7c29b1501a316a208ed84cd8a2ae5da (diff) | |
| download | rust-824a867e82b540503f8ae1f589445d9f9a8ce941.tar.gz rust-824a867e82b540503f8ae1f589445d9f9a8ce941.zip | |
Rework trait expansion to happen once explicitly
Diffstat (limited to 'compiler/rustc_trait_selection/src/traits/mod.rs')
| -rw-r--r-- | compiler/rustc_trait_selection/src/traits/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/mod.rs b/compiler/rustc_trait_selection/src/traits/mod.rs index da16a742099..7a485419444 100644 --- a/compiler/rustc_trait_selection/src/traits/mod.rs +++ b/compiler/rustc_trait_selection/src/traits/mod.rs @@ -66,9 +66,9 @@ pub use self::specialize::{ }; pub use self::structural_normalize::StructurallyNormalizeExt; pub use self::util::{ - BoundVarReplacer, PlaceholderReplacer, TraitAliasExpander, TraitAliasExpansionInfo, elaborate, - expand_trait_aliases, impl_item_is_final, supertraits, - transitive_bounds_that_define_assoc_item, upcast_choices, with_replaced_escaping_bound_vars, + BoundVarReplacer, PlaceholderReplacer, elaborate, expand_trait_aliases, impl_item_is_final, + supertraits, transitive_bounds_that_define_assoc_item, upcast_choices, + with_replaced_escaping_bound_vars, }; use crate::error_reporting::InferCtxtErrorExt; use crate::infer::outlives::env::OutlivesEnvironment; |
