diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-04-30 20:13:05 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-07 08:12:48 -0700 |
| commit | dca8a0d6e4d1848ead898b3fa5b1e6c940c85b87 (patch) | |
| tree | 219fe4ec5952f3b07227852529c0007285dcdd14 /src/libstd/lib.rs | |
| parent | 5b75e44fb01f0eda10ce8d8df92b80945d894768 (diff) | |
| download | rust-dca8a0d6e4d1848ead898b3fa5b1e6c940c85b87.tar.gz rust-dca8a0d6e4d1848ead898b3fa5b1e6c940c85b87.zip | |
core: Inherit the mem module
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 2c971542960..9ef657f6e4a 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -134,6 +134,7 @@ extern crate core; #[cfg(test)] pub use owned = realstd::owned; pub use core::intrinsics; +pub use core::mem; // Run tests with libgreen instead of libnative. // @@ -243,8 +244,6 @@ pub mod path; pub mod cast; pub mod fmt; pub mod cleanup; -pub mod mem; - /* Unsupported interfaces */ |
