]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/for-destruct.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / for-destruct.rs
index d090f9a243c4ad193cfdbc2000098e34e6352656..7cc8b22e061e4c26c514add64c0a649963878519 100644 (file)
@@ -8,13 +8,10 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-test: #3511: does not currently compile, due to rvalue issues
-
-use std::vec;
-
 struct Pair { x: int, y: int }
+
 pub fn main() {
-    for vec::each(~[Pair {x: 10, y: 20}, Pair {x: 30, y: 0}]) |elt| {
+    for elt in (vec!(Pair {x: 10, y: 20}, Pair {x: 30, y: 0})).iter() {
         assert_eq!(elt.x + elt.y, 30);
     }
 }