diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-04-30 21:11:17 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-07 08:14:56 -0700 |
| commit | 6636215a44b27d1806a2ac646bde1d4ecaa801c4 (patch) | |
| tree | 0a002b5354f600d18c277d51153874fef7ecd1d0 /src/libstd/lib.rs | |
| parent | 92095d125ab4353a7bae002b893c2bd1bd06e379 (diff) | |
| download | rust-6636215a44b27d1806a2ac646bde1d4ecaa801c4.tar.gz rust-6636215a44b27d1806a2ac646bde1d4ecaa801c4.zip | |
core: Inherit the bool 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 ac956b11d27..9e74a291eef 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -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; |
