]> 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 d16a964ea798cb2bbfae1a1ba9c58f7e67b38e9a..4305ae956989e3e99e44cb70f3db18ee82c89f45 100644 (file)
@@ -18,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);
     }