about summary refs log tree commit diff
path: root/src/test/run-make/simple-rlib
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-02-14 10:10:06 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-02-14 22:55:21 -0800
commita41b0c25295e06b8eebc4bdcb3021354f766cba0 (patch)
treed1b3262191eb927bc9e0535318676d711e2a655d /src/test/run-make/simple-rlib
parent359ac360a453b31494d18bf838f6620032a663e5 (diff)
extern mod => extern crate
This was previously implemented, and it just needed a snapshot to go through
Diffstat (limited to 'src/test/run-make/simple-rlib')
-rw-r--r--src/test/run-make/simple-rlib/foo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make/simple-rlib/foo.rs b/src/test/run-make/simple-rlib/foo.rs
index 2c22cea09aa..858ef492ace 100644
--- a/src/test/run-make/simple-rlib/foo.rs
+++ b/src/test/run-make/simple-rlib/foo.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-extern mod bar;
+extern crate bar;
 
 fn main() {
     bar::bar();