core: Inherit the cast module

This commit is contained in:
Alex Crichton 2014-04-30 20:20:44 -07:00
parent 645b157564
commit 28624661c3
3 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@
/* Core modules for ownership management */
pub mod cast;
pub mod intrinsics;
pub mod mem;
pub mod ptr;

View File

@ -133,6 +133,7 @@ extern crate core;
#[cfg(test)] pub use ty = realstd::ty;
#[cfg(test)] pub use owned = realstd::owned;
pub use core::cast;
pub use core::intrinsics;
pub use core::mem;
pub use core::ptr;
@ -242,7 +243,6 @@ pub mod c_vec;
pub mod os;
pub mod io;
pub mod path;
pub mod cast;
pub mod fmt;
pub mod cleanup;