about summary refs log tree commit diff
path: root/compiler/rustc_next_trait_solver/src/delegate.rs
diff options
context:
space:
mode:
authorChayim Refael Friedman <chayimfr@gmail.com>2025-09-02 11:35:25 +0300
committerChayim Refael Friedman <chayimfr@gmail.com>2025-09-02 11:35:25 +0300
commit6f0ebdb71a1d4f0fced5b10f1ddbbd227042bd5e (patch)
tree54cb175c6d2746134c419a5ec0d2d7ad146232ca /compiler/rustc_next_trait_solver/src/delegate.rs
parent05abce5d058db0de3abd10f32f1a442d0f699b30 (diff)
downloadrust-6f0ebdb71a1d4f0fced5b10f1ddbbd227042bd5e.tar.gz
rust-6f0ebdb71a1d4f0fced5b10f1ddbbd227042bd5e.zip
Migrate more things in the new solver to specific `DefId`s
Diffstat (limited to 'compiler/rustc_next_trait_solver/src/delegate.rs')
-rw-r--r--compiler/rustc_next_trait_solver/src/delegate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_next_trait_solver/src/delegate.rs b/compiler/rustc_next_trait_solver/src/delegate.rs
index 7b932010d49..a7ecbfcb7c4 100644
--- a/compiler/rustc_next_trait_solver/src/delegate.rs
+++ b/compiler/rustc_next_trait_solver/src/delegate.rs
@@ -76,7 +76,7 @@ pub trait SolverDelegate: Deref<Target = Self::Infcx> + Sized {
         &self,
         goal_trait_ref: ty::TraitRef<Self::Interner>,
         trait_assoc_def_id: <Self::Interner as Interner>::DefId,
-        impl_def_id: <Self::Interner as Interner>::DefId,
+        impl_def_id: <Self::Interner as Interner>::ImplId,
     ) -> Result<
         Option<<Self::Interner as Interner>::DefId>,
         <Self::Interner as Interner>::ErrorGuaranteed,