We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
libcore/bool/mod.rs
libcore/bool.rs
1 parent b73e32c commit 0f0e1c1Copy full SHA for 0f0e1c1
src/libcore/bool/mod.rs renamed to src/libcore/bool.rs
@@ -1,7 +1,5 @@
1
//! impl bool {}
2
3
-#![stable(feature = "core_bool", since = "1.39.0")]
4
-
5
#[cfg(not(boostrap_stdarch_ignore_this))]
6
#[lang = "bool"]
7
impl bool {
src/libcore/lib.rs
@@ -198,7 +198,6 @@ pub mod borrow;
198
pub mod any;
199
pub mod array;
200
pub mod ascii;
201
-pub mod bool;
202
pub mod sync;
203
pub mod cell;
204
pub mod char;
@@ -228,6 +227,7 @@ pub mod task;
228
227
pub mod alloc;
229
230
// note: does not need to be public
+mod bool;
231
mod tuple;
232
mod unit;
233
0 commit comments