Unnamed repository; edit this file 'description' to name the repository.
Merge #11198
11198: Remove unused lifetime r=lnicola a=Aaron1011 Co-authored-by: Aaron Hill <[email protected]>
bors[bot] 2022-01-06
parent c5049bd · parent 04cb850 · commit 97838b1
-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> {