diff --git a/Cargo.toml b/Cargo.toml index 0e8600f65d9..c9ad876176e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -180,7 +180,6 @@ from_str_radix_10 = "allow" get_first = "allow" if_same_then_else = "allow" large_enum_variant = "allow" -map_clone = "allow" match_like_matches_macro = "allow" match_single_binding = "allow" needless_borrow = "allow" diff --git a/crates/hir/src/source_analyzer.rs b/crates/hir/src/source_analyzer.rs index 4dc30950da4..811e724747f 100644 --- a/crates/hir/src/source_analyzer.rs +++ b/crates/hir/src/source_analyzer.rs @@ -197,10 +197,8 @@ impl SourceAnalyzer { ) -> Option<(Type, Option)> { let pat_id = self.pat_id(pat)?; let infer = self.infer.as_ref()?; - let coerced = infer - .pat_adjustments - .get(&pat_id) - .and_then(|adjusts| adjusts.last().map(|adjust| adjust.clone())); + let coerced = + infer.pat_adjustments.get(&pat_id).and_then(|adjusts| adjusts.last().cloned()); let ty = infer[pat_id].clone(); let mk_ty = |ty| Type::new_with_resolver(db, &self.resolver, ty); Some((mk_ty(ty), coerced.map(mk_ty)))