Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/next_solver/infer/select.rs')
-rw-r--r--crates/hir-ty/src/next_solver/infer/select.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir-ty/src/next_solver/infer/select.rs b/crates/hir-ty/src/next_solver/infer/select.rs
index d6f0379c11..1462f29205 100644
--- a/crates/hir-ty/src/next_solver/infer/select.rs
+++ b/crates/hir-ty/src/next_solver/infer/select.rs
@@ -40,7 +40,7 @@ pub enum SelectionError<'db> {
/// Computing an opaque type's hidden type caused an error (e.g. a cycle error).
/// We can thus not know whether the hidden type implements an auto trait, so
/// we should not presume anything about it.
- OpaqueTypeAutoTraitLeakageUnknown(InternedOpaqueTyId),
+ OpaqueTypeAutoTraitLeakageUnknown(InternedOpaqueTyId<'db>),
/// Error for a `ConstArgHasType` goal
ConstArgHasWrongType { ct: Const<'db>, ct_ty: Ty<'db>, expected_ty: Ty<'db> },
}