]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/tuple-struct-constructor-pointer.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / tuple-struct-constructor-pointer.rs
index 281ea39084f594de82d9088f73d01d1a4ca910a9..a4bb914b1ab3dc674e973fbad9295b6c3a2594e9 100644 (file)
@@ -8,9 +8,9 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#[deriving(PartialEq, Show)]
+#[derive(PartialEq, Show)]
 struct Foo(int);
-#[deriving(PartialEq, Show)]
+#[derive(PartialEq, Show)]
 struct Bar(int, int);
 
 pub fn main() {