diff options
Diffstat (limited to 'src/test/run-pass/foreach-external-iterators-hashmap.rs')
| -rw-r--r-- | src/test/run-pass/foreach-external-iterators-hashmap.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/run-pass/foreach-external-iterators-hashmap.rs b/src/test/run-pass/foreach-external-iterators-hashmap.rs index 365cde34dce..e6280b47b6e 100644 --- a/src/test/run-pass/foreach-external-iterators-hashmap.rs +++ b/src/test/run-pass/foreach-external-iterators-hashmap.rs @@ -8,7 +8,9 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -use std::hashmap::HashMap; +extern crate collections; + +use collections::HashMap; pub fn main() { let mut h = HashMap::new(); |
