mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +03:00
44aa75fd2a
```rust
let mut tmp = vec![1, 2, 3];
for b in &mut tmp {
*b = !*b;
}
```
must not suggest the invalid `tmp.fill(!*b)`.