]> 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 d47ef3c7f90e9491aceb07f2304e263346fffa87..6c6c5085749bb9be42bad0c0a0583b2954891b10 100644 (file)
@@ -8,12 +8,12 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast
 
 fn f(arg: &mut A) {
     arg.a = 100;
 }
 
+#[derive(Copy)]
 struct A { a: int }
 
 pub fn main() {