about summary refs log tree commit diff
path: root/src/test/run-make/mixing-deps/prog.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make/mixing-deps/prog.rs')
-rw-r--r--src/test/run-make/mixing-deps/prog.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-make/mixing-deps/prog.rs b/src/test/run-make/mixing-deps/prog.rs
index 5d21c01c631..ed8675eb706 100644
--- a/src/test/run-make/mixing-deps/prog.rs
+++ b/src/test/run-make/mixing-deps/prog.rs
@@ -8,8 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-extern mod dylib;
-extern mod both;
+extern crate dylib;
+extern crate both;
 
 use std::cast;