Skip to content

Commit 31fbb5a

Browse files
committed
fix imports
1 parent e1fceaf commit 31fbb5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/run-pass/hashmap.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// macOS needs FS access for its HashMap:
22
// compile-flags: -Zmiri-disable-isolation
33

4-
use std::collections::{self, HashMap};
5-
use std::hash::{BuildHasherDefault, BuildHasher};
4+
use std::collections::HashMap;
5+
use std::hash::BuildHasher;
66

77
fn test_map<S: BuildHasher>(mut map: HashMap<i32, i32, S>) {
88
map.insert(0, 0);

0 commit comments

Comments
 (0)