diff options
| author | bors <bors@rust-lang.org> | 2024-08-05 17:03:58 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-08-05 17:03:58 +0000 |
| commit | f7eefec4e03f5ba723fbc04d94dbc1203b7c9bff (patch) | |
| tree | 1637ce14bf6b1d141c7f8697f477b4506538a492 /compiler/rustc_trait_selection/src | |
| parent | 2b78d920964e1d70927bcd208529bda0e11120d0 (diff) | |
| parent | 86798401df960a8e8da353250dc1351ee00eedc2 (diff) | |
| download | rust-f7eefec4e03f5ba723fbc04d94dbc1203b7c9bff.tar.gz rust-f7eefec4e03f5ba723fbc04d94dbc1203b7c9bff.zip | |
Auto merge of #128689 - matthiaskrgr:rollup-ukyn8wq, r=matthiaskrgr
Rollup of 5 pull requests Successful merges: - #128385 (rustdoc-json: discard non-local inherent impls for primitives) - #128559 (Don't re-elaborated already elaborated caller bounds in method probe) - #128631 (handle crates when they are not specified for std docs) - #128664 (Add `Debug` impls to API types in `rustc_codegen_ssa`) - #128686 (fix the invalid argument type) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_trait_selection/src')
| -rw-r--r-- | compiler/rustc_trait_selection/src/traits/mod.rs | 2 |
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, }; |
