core: Allow some #[deriving] in libcore

This commit is contained in:
Alex Crichton
2014-04-30 23:25:35 -07:00
parent e0d43b023e
commit c9447c5d95

View File

@@ -70,9 +70,15 @@ pub mod iter;
pub mod option; pub mod option;
pub mod raw; pub mod raw;
pub mod char; pub mod char;
pub mod result;
pub mod slice; pub mod slice;
pub mod str; pub mod str;
pub mod tuple; pub mod tuple;
// FIXME: this module should not exist // FIXME: this module should not exist
mod should_not_exist; mod should_not_exist;
mod std {
pub use clone;
pub use cmp;
}