diff options
Diffstat (limited to 'src/test/run-pass/extern-mod-syntax.rs')
| -rw-r--r-- | src/test/run-pass/extern-mod-syntax.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/extern-mod-syntax.rs b/src/test/run-pass/extern-mod-syntax.rs index c98b5ebc238..0db61fc8cd5 100644 --- a/src/test/run-pass/extern-mod-syntax.rs +++ b/src/test/run-pass/extern-mod-syntax.rs @@ -10,8 +10,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -extern mod std; -use std::json::Object; +extern mod extra; +use extra::json::Object; pub fn main() { io::println("Hello world!"); |
