about summary refs log tree commit diff
path: root/src/test/run-pass/tuple-struct-construct.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-01-02 16:31:26 +0000
committerbors <bors@rust-lang.org>2015-01-02 16:31:26 +0000
commit4b40bc85cbc1d072179c92ce01655db0272aa598 (patch)
treee9ea8c89e3dbde74c6e87899e440a0ec0649887c /src/test/run-pass/tuple-struct-construct.rs
parent71b46b18a274edc7f7fb60b490e5ebbb9c911462 (diff)
parentdc53461a983ec4f5bc50291e71bfc67fd3d2d815 (diff)
downloadrust-4b40bc85cbc1d072179c92ce01655db0272aa598.tar.gz
rust-4b40bc85cbc1d072179c92ce01655db0272aa598.zip
auto merge of #20365 : nick29581/rust/mod, r=huonw
Part of #20361 and #20362
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() {