1
Fork 0

core: Inherit the bool module

This commit is contained in:
Alex Crichton 2014-04-30 21:11:17 -07:00
parent 92095d125a
commit 6636215a44
4 changed files with 41 additions and 36 deletions

View file

@ -138,6 +138,7 @@ extern crate core;
#[cfg(not(test))] pub use ty = core::ty;
pub use core::any;
pub use core::bool;
pub use core::cast;
pub use core::char;
pub use core::clone;
@ -192,8 +193,6 @@ pub mod prelude;
#[path = "num/f32.rs"] pub mod f32;
#[path = "num/f64.rs"] pub mod f64;
pub mod bool;
pub mod slice;
pub mod vec;
pub mod str;