diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-04-30 20:55:38 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-07 08:13:56 -0700 |
| commit | 54b81997f367e8963d722c5e23bd7a877d0273cd (patch) | |
| tree | 5fd591d9481ec45df3a7b302617280ff2e5d7092 /src/libstd/lib.rs | |
| parent | e7eed5f670e8b283e7afcba5c79b3b208167a647 (diff) | |
| download | rust-54b81997f367e8963d722c5e23bd7a877d0273cd.tar.gz rust-54b81997f367e8963d722c5e23bd7a877d0273cd.zip | |
core: Inherit the clone module
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 5e71fc72dc9..aca182a02ea 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -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 */ |
