]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/foreach-external-iterators-hashmap.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / foreach-external-iterators-hashmap.rs
index 365cde34dce827926400988d7c9d5387950e1d84..ab20f9f97780195b4248b5ee6743b6de090ebc17 100644 (file)
@@ -8,16 +8,18 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-use std::hashmap::HashMap;
+extern crate collections;
+
+use std::collections::HashMap;
 
 pub fn main() {
     let mut h = HashMap::new();
-    let kvs = [(1, 10), (2, 20), (3, 30)];
+    let kvs = [(1i, 10i), (2i, 20i), (3i, 30i)];
     for &(k,v) in kvs.iter() {
         h.insert(k,v);
     }
-    let mut x = 0;
-    let mut y = 0;
+    let mut x = 0i;
+    let mut y = 0i;
     for (&k,&v) in h.iter() {
         x += k;
         y += v;