Skip to content

Commit 3b11310

Browse files
committed
manual_slice_fill: initializer must not reference the iterator
```rust let mut tmp = vec![1, 2, 3]; for b in &mut tmp { *b = !*b; } ``` must not suggest the invalid `tmp.fill(!*b)`.
1 parent 992a864 commit 3b11310

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

clippy_lints/src/loops/manual_slice_fill.rs

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ use clippy_utils::eager_or_lazy::switch_to_eager_eval;
33
use clippy_utils::msrvs::{self, Msrv};
44
use clippy_utils::source::{HasSession, snippet_with_applicability};
55
use clippy_utils::ty::implements_trait;
6+
use clippy_utils::visitors::is_local_used;
67
use clippy_utils::{higher, peel_blocks_with_stmt, span_contains_comment};
78
use rustc_ast::ast::LitKind;
89
use rustc_ast::{RangeLimits, UnOp};
@@ -71,6 +72,8 @@ pub(super) fn check<'tcx>(
7172
&& local == pat.hir_id
7273
&& !assignval.span.from_expansion()
7374
&& switch_to_eager_eval(cx, assignval)
75+
// `assignval` must not reference the iterator
76+
&& !is_local_used(cx, assignval, local)
7477
// The `fill` method cannot be used if the slice's element type does not implement the `Clone` trait.
7578
&& let Some(clone_trait) = cx.tcx.lang_items().clone_trait()
7679
&& implements_trait(cx, cx.typeck_results().expr_ty(recv), clone_trait, &[])

tests/ui/manual_slice_fill.fixed

+8
Original file line numberDiff line numberDiff line change
@@ -99,3 +99,11 @@ fn should_not_lint() {
9999
*i = None;
100100
}
101101
}
102+
103+
fn issue14189() {
104+
// Should not lint because `!*b` is not constant
105+
let mut tmp = vec![1, 2, 3];
106+
for b in &mut tmp {
107+
*b = !*b;
108+
}
109+
}

tests/ui/manual_slice_fill.rs

+8
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,11 @@ fn should_not_lint() {
108108
*i = None;
109109
}
110110
}
111+
112+
fn issue14189() {
113+
// Should not lint because `!*b` is not constant
114+
let mut tmp = vec![1, 2, 3];
115+
for b in &mut tmp {
116+
*b = !*b;
117+
}
118+
}

0 commit comments

Comments
 (0)