]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/class-impl-very-parameterized-trait.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / class-impl-very-parameterized-trait.rs
index a0d35fd596b535c07f8cf10ee789f6e352d17445..993f27d061d20f9c000517591305e8a2940f4728 100644 (file)
@@ -11,7 +11,7 @@
 
 use std::cmp;
 
-#[deriving(Show)]
+#[derive(Copy, Show)]
 enum cat_type { tuxedo, tabby, tortoiseshell }
 
 impl cmp::PartialEq for cat_type {