Skip to content

Commit 7db652c

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 8354f46 commit 7db652c

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

clippy_lints/src/loops/manual_slice_fill.rs

+2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ pub(super) fn check<'tcx>(
7676
&& local == pat.hir_id
7777
&& !assignval.span.from_expansion()
7878
&& switch_to_eager_eval(cx, assignval)
79+
// `assignval` must not reference the iterator
80+
&& !is_local_used(cx, assignval, local)
7981
// The `fill` method cannot be used if the slice's element type does not implement the `Clone` trait.
8082
&& let Some(clone_trait) = cx.tcx.lang_items().clone_trait()
8183
&& 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
@@ -115,3 +115,11 @@ fn issue_14192() {
115115
tmp[0] = i;
116116
}
117117
}
118+
119+
fn issue14189() {
120+
// Should not lint because `!*b` is not constant
121+
let mut tmp = vec![1, 2, 3];
122+
for b in &mut tmp {
123+
*b = !*b;
124+
}
125+
}

tests/ui/manual_slice_fill.rs

+8
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,11 @@ fn issue_14192() {
124124
tmp[0] = i;
125125
}
126126
}
127+
128+
fn issue14189() {
129+
// Should not lint because `!*b` is not constant
130+
let mut tmp = vec![1, 2, 3];
131+
for b in &mut tmp {
132+
*b = !*b;
133+
}
134+
}

0 commit comments

Comments
 (0)