]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/prelude.rs
core: Split apart the global `core` feature
[rust.git] / src / libcore / prelude.rs
index a4d529ad47d09036fe32366fd9bd3150db89f4a6..ac153d64ab28ffbbeb0a37a843ab3a6d1d76b36f 100644 (file)
 //! use core::prelude::*;
 //! ```
 
+#![unstable(feature = "core_prelude",
+            reason = "the libcore prelude has not been scrutinized and \
+                      stabilized yet")]
+
 // Reexported core operators
 pub use marker::{Copy, Send, Sized, Sync};
 pub use ops::{Drop, Fn, FnMut, FnOnce};
@@ -32,7 +36,6 @@
 pub use mem::drop;
 
 // Reexported types and traits
-
 pub use char::CharExt;
 pub use clone::Clone;
 pub use cmp::{PartialEq, PartialOrd, Eq, Ord};