Skip to content

Commit 4a56563

Browse files
committed
Auto merge of #11900 - Enselic:needless-borrow-drop, r=Manishearth
needless_borrows_for_generic_args: Handle when field operand impl Drop Before this fix, the lint had a false positive, namely when a reference was taken to a field when the field operand implements a custom Drop. The compiler will refuse to partially move a type that implements Drop, because that would put the type in a weird state. ## False Positive Example (Fixed) ```rs struct CustomDrop(String); impl Drop for CustomDrop { fn drop(&mut self) {} } fn check_str<P: AsRef<str>>(_to: P) {} fn test() { let owner = CustomDrop(String::default()); check_str(&owner.0); // Don't lint. `owner` can't be partially moved because it impl Drop } ``` changelog: [`needless_borrows_for_generic_args`]: Handle when field operand impl Drop
2 parents 42b017d + 512f302 commit 4a56563

3 files changed

+40
-2
lines changed

clippy_lints/src/needless_borrows_for_generic_args.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use clippy_config::msrvs::{self, Msrv};
22
use clippy_utils::diagnostics::span_lint_and_then;
33
use clippy_utils::mir::{enclosing_mir, expr_local, local_assignments, used_exactly_once, PossibleBorrowerMap};
44
use clippy_utils::source::snippet_with_context;
5-
use clippy_utils::ty::is_copy;
5+
use clippy_utils::ty::{implements_trait, is_copy};
66
use clippy_utils::{expr_use_ctxt, peel_n_hir_expr_refs, DefinedTy, ExprUseNode};
77
use rustc_errors::Applicability;
88
use rustc_hir::def::{DefKind, Res};
@@ -169,6 +169,7 @@ fn needless_borrow_count<'tcx>(
169169
) -> usize {
170170
let destruct_trait_def_id = cx.tcx.lang_items().destruct_trait();
171171
let sized_trait_def_id = cx.tcx.lang_items().sized_trait();
172+
let drop_trait_def_id = cx.tcx.lang_items().drop_trait();
172173

173174
let fn_sig = cx.tcx.fn_sig(fn_id).instantiate_identity().skip_binder();
174175
let predicates = cx.tcx.param_env(fn_id).caller_bounds();
@@ -223,7 +224,14 @@ fn needless_borrow_count<'tcx>(
223224
// elements are modified each time `check_referent` is called.
224225
let mut args_with_referent_ty = callee_args.to_vec();
225226

226-
let mut check_reference_and_referent = |reference, referent| {
227+
let mut check_reference_and_referent = |reference: &Expr<'tcx>, referent: &Expr<'tcx>| {
228+
if let ExprKind::Field(base, _) = &referent.kind {
229+
let base_ty = cx.typeck_results().expr_ty(base);
230+
if drop_trait_def_id.map_or(false, |id| implements_trait(cx, base_ty, id, &[])) {
231+
return false;
232+
}
233+
}
234+
227235
let referent_ty = cx.typeck_results().expr_ty(referent);
228236

229237
if !is_copy(cx, referent_ty)

tests/ui/needless_borrows_for_generic_args.fixed

+15
Original file line numberDiff line numberDiff line change
@@ -284,4 +284,19 @@ fn main() {
284284
{
285285
}
286286
}
287+
// address of field when operand impl Drop
288+
{
289+
struct CustomDrop(String);
290+
291+
impl Drop for CustomDrop {
292+
fn drop(&mut self) {}
293+
}
294+
295+
fn check_str<P: AsRef<str>>(_to: P) {}
296+
297+
fn test() {
298+
let owner = CustomDrop(String::default());
299+
check_str(&owner.0); // Don't lint. `owner` can't be partially moved because it impl Drop
300+
}
301+
}
287302
}

tests/ui/needless_borrows_for_generic_args.rs

+15
Original file line numberDiff line numberDiff line change
@@ -284,4 +284,19 @@ fn main() {
284284
{
285285
}
286286
}
287+
// address of field when operand impl Drop
288+
{
289+
struct CustomDrop(String);
290+
291+
impl Drop for CustomDrop {
292+
fn drop(&mut self) {}
293+
}
294+
295+
fn check_str<P: AsRef<str>>(_to: P) {}
296+
297+
fn test() {
298+
let owner = CustomDrop(String::default());
299+
check_str(&owner.0); // Don't lint. `owner` can't be partially moved because it impl Drop
300+
}
301+
}
287302
}

0 commit comments

Comments
 (0)