Move libcore/bool/mod.rs to libcore/bool.rs

This commit is contained in:
varkor 2019-09-07 17:04:19 +01:00
parent b73e32c795
commit 0f0e1c1691
2 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,5 @@
//! impl bool {}
#![stable(feature = "core_bool", since = "1.39.0")]
#[cfg(not(boostrap_stdarch_ignore_this))]
#[lang = "bool"]
impl bool {

View File

@ -198,7 +198,6 @@ pub mod borrow;
pub mod any;
pub mod array;
pub mod ascii;
pub mod bool;
pub mod sync;
pub mod cell;
pub mod char;
@ -228,6 +227,7 @@ pub mod task;
pub mod alloc;
// note: does not need to be public
mod bool;
mod tuple;
mod unit;