Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Dec 31, 2019
1 parent e1fceaf commit 31fbb5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/run-pass/hashmap.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// macOS needs FS access for its HashMap:
// compile-flags: -Zmiri-disable-isolation

use std::collections::{self, HashMap};
use std::hash::{BuildHasherDefault, BuildHasher};
use std::collections::HashMap;
use std::hash::BuildHasher;

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

0 comments on commit 31fbb5a

Please sign in to comment.