]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/foreach-external-iterators-hashmap-break-restart.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / foreach-external-iterators-hashmap-break-restart.rs
index 34ce8c471132933406e6221e0140de529603376e..4305ae956989e3e99e44cb70f3db18ee82c89f45 100644 (file)
@@ -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 std::collections::HashMap;
 
 // This is a fancy one: it uses an external iterator established
 // outside the loop, breaks, then _picks back up_ and continues
@@ -16,7 +18,7 @@
 
 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);
     }