diff options
| author | Michael Goulet <michael@errs.io> | 2025-07-12 19:31:15 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2025-07-12 19:31:15 +0000 |
| commit | 736bfa12de73155633261ca6682b9d5e72d32c6d (patch) | |
| tree | 62418db9b52b125a3af1b7058fe814d1b1fae1b1 /compiler/rustc_metadata | |
| parent | 47e15d90e13b5238117971298a3573ddebd87a40 (diff) | |
| download | rust-736bfa12de73155633261ca6682b9d5e72d32c6d.tar.gz rust-736bfa12de73155633261ca6682b9d5e72d32c6d.zip | |
Clean up implementation of RPITIT assoc item lowering
Diffstat (limited to 'compiler/rustc_metadata')
| -rw-r--r-- | compiler/rustc_metadata/src/rmeta/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_metadata/src/rmeta/mod.rs b/compiler/rustc_metadata/src/rmeta/mod.rs index 213090d7d47..8347626080e 100644 --- a/compiler/rustc_metadata/src/rmeta/mod.rs +++ b/compiler/rustc_metadata/src/rmeta/mod.rs @@ -481,7 +481,7 @@ define_tables! { assumed_wf_types_for_rpitit: Table<DefIndex, LazyArray<(Ty<'static>, Span)>>, opaque_ty_origin: Table<DefIndex, LazyValue<hir::OpaqueTyOrigin<DefId>>>, anon_const_kind: Table<DefIndex, LazyValue<ty::AnonConstKind>>, - associated_types_for_impl_traits_in_trait_or_impl: Table<DefIndex, LazyValue<ty::AssocTyForImplTraitInTraitOrImpl>>, + associated_types_for_impl_traits_in_trait_or_impl: Table<DefIndex, LazyValue<DefIdMap<Vec<DefId>>>>, } #[derive(TyEncodable, TyDecodable)] |
