about summary refs log tree commit diff
path: root/src/test/run-pass/tuple-struct-construct.rs
diff options
context:
space:
mode:
authorNick Cameron <ncameron@mozilla.com>2014-12-31 17:32:49 +1300
committerNick Cameron <ncameron@mozilla.com>2015-01-02 23:05:22 +1300
commit30e149231c627e61524d1b5bd6357886befae9e6 (patch)
tree8bfb22729d4d1c3784be33cf6eed65aae89fa1d9 /src/test/run-pass/tuple-struct-construct.rs
parent7506fe52696c5b3b628f173d74dc4a13b5ccc1f3 (diff)
downloadrust-30e149231c627e61524d1b5bd6357886befae9e6.tar.gz
rust-30e149231c627e61524d1b5bd6357886befae9e6.zip
Use `derive` rather than `deriving` in tests
Diffstat (limited to 'src/test/run-pass/tuple-struct-construct.rs')
-rw-r--r--src/test/run-pass/tuple-struct-construct.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/tuple-struct-construct.rs b/src/test/run-pass/tuple-struct-construct.rs
index af8b203d951..5bf152f2976 100644
--- a/src/test/run-pass/tuple-struct-construct.rs
+++ b/src/test/run-pass/tuple-struct-construct.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#[deriving(Show)]
+#[derive(Show)]
 struct Foo(int, int);
 
 pub fn main() {