]> 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 dd1cda22e653880682b02ed92250e1257eb5563e..7cc8b22e061e4c26c514add64c0a649963878519 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
 //
@@ -8,13 +8,10 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// xfail-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);
     }
 }