core: Inherit the clone module

This commit is contained in:
Alex Crichton 2014-04-30 20:55:38 -07:00
parent e7eed5f670
commit 54b81997f3
3 changed files with 2 additions and 1 deletions

View File

@ -33,6 +33,7 @@ pub mod ptr;
pub mod kinds;
pub mod ops;
pub mod ty;
pub mod clone;
pub mod default;
pub mod container;

View File

@ -140,6 +140,7 @@ extern crate core;
pub use core::any;
pub use core::cast;
pub use core::char;
pub use core::clone;
pub use core::container;
pub use core::default;
pub use core::intrinsics;
@ -218,7 +219,6 @@ pub mod from_str;
pub mod num;
pub mod iter;
pub mod to_str;
pub mod clone;
pub mod hash;
/* Common data structures */