]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/expr-copy.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / expr-copy.rs
index 2d370bada286cb32285670340c48c2614852f36b..6c6c5085749bb9be42bad0c0a0583b2954891b10 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,20 +8,20 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// xfail-fast
 
 fn f(arg: &mut A) {
     arg.a = 100;
 }
 
+#[derive(Copy)]
 struct A { a: int }
 
 pub fn main() {
     let mut x = A {a: 10};
     f(&mut x);
-    assert x.a == 100;
+    assert_eq!(x.a, 100);
     x.a = 20;
-    let mut y = copy x;
+    let mut y = x;
     f(&mut y);
-    assert x.a == 20;
+    assert_eq!(x.a, 20);
 }