We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d51c364 + e958362 commit 8c999faCopy full SHA for 8c999fa
src/libstd/collections/hash/map.rs
@@ -3532,12 +3532,11 @@ mod test_map {
3532
m.insert(x, ());
3533
}
3534
3535
- for i in 0..1000 {
+ for _ in 0..1000 {
3536
let x = rng.gen_range(-10, 10);
3537
match m.entry(x) {
3538
Vacant(_) => {}
3539
Occupied(e) => {
3540
- println!("{}: remove {}", i, x);
3541
e.remove();
3542
3543
0 commit comments