diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-05-20 15:20:16 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-05-22 21:57:08 -0700 |
| commit | c10e0cb9c984ece484a5c8c9c4c20369e2be499b (patch) | |
| tree | 23f4a3a11a7efc8861f9b8878a8d6ec8bfa14260 /src/libextra | |
| parent | 9200237b4d86cba8f3b222ff8957f79d54ecd0e1 (diff) | |
| download | rust-c10e0cb9c984ece484a5c8c9c4c20369e2be499b.tar.gz rust-c10e0cb9c984ece484a5c8c9c4c20369e2be499b.zip | |
syntax: Change syntax extensions to expand to `std::foo` instead of `core::foo`
Diffstat (limited to 'src/libextra')
| -rw-r--r-- | src/libextra/std.rc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libextra/std.rc b/src/libextra/std.rc index 777f45e84bc..7f9902dfc8c 100644 --- a/src/libextra/std.rc +++ b/src/libextra/std.rc @@ -125,6 +125,12 @@ pub mod serialize; pub mod std { pub use serialize; pub use test; + + // For bootstrapping. + pub use core::clone; + pub use core::condition; + pub use core::cmp; + pub use core::sys; } #[doc(hidden)] // FIXME #3538 pub mod extra { |
