diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-03-26 19:53:33 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-03-26 21:30:17 -0700 |
| commit | 0a4d0f37ca97bb0b69f5f9e768269dde4acedae8 (patch) | |
| tree | 75872ca3bdd242b58a2cd1d939f87604f32fc818 /src/libstd/std.rc | |
| parent | 8b56a8380b6cca384f4ade7aa1a07b0c5eb77d60 (diff) | |
| download | rust-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.rc | 2 |
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; |
