about summary refs log tree commit diff
path: root/src/libstd/std.rc
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2013-03-26 19:53:33 -0700
committerPatrick Walton <pcwalton@mimiga.net>2013-03-26 21:30:17 -0700
commit0a4d0f37ca97bb0b69f5f9e768269dde4acedae8 (patch)
tree75872ca3bdd242b58a2cd1d939f87604f32fc818 /src/libstd/std.rc
parent8b56a8380b6cca384f4ade7aa1a07b0c5eb77d60 (diff)
downloadrust-0a4d0f37ca97bb0b69f5f9e768269dde4acedae8.tar.gz
rust-0a4d0f37ca97bb0b69f5f9e768269dde4acedae8.zip
librustc: Enforce that `extern mod` directives come first, then `use` directives, then items.
Resolve them in this order as well.
Diffstat (limited to 'src/libstd/std.rc')
-rw-r--r--src/libstd/std.rc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/std.rc b/src/libstd/std.rc
index 7d46e73a697..a0ab714de05 100644
--- a/src/libstd/std.rc
+++ b/src/libstd/std.rc
@@ -33,7 +33,7 @@ not required in or otherwise suitable for the core library.
 #[no_core];
 
 extern mod core(vers = "0.6");
-use core::*;
+use core::prelude::*;
 
 pub mod uv_ll;