Unnamed repository; edit this file 'description' to name the repository.
Remove unused lifetime
Aaron Hill 2022-01-05
parent c5049bd · commit 04cb850
-rw-r--r--crates/hir_ty/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/lib.rs b/crates/hir_ty/src/lib.rs
index 1950820a37..f1280fcc10 100644
--- a/crates/hir_ty/src/lib.rs
+++ b/crates/hir_ty/src/lib.rs
@@ -358,7 +358,7 @@ where
struct ErrorReplacer {
vars: usize,
}
- impl<'i> Folder<Interner> for ErrorReplacer {
+ impl Folder<Interner> for ErrorReplacer {
type Error = NoSolution;
fn as_dyn(&mut self) -> &mut dyn Folder<Interner, Error = Self::Error> {