diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-04-30 20:36:58 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-07 08:13:56 -0700 |
| commit | 8ed728babb057c0f736a63a69ba772e45278148f (patch) | |
| tree | f36caede39ebc876fe40ef02aaedbffaa0a9f70c /src/libstd/lib.rs | |
| parent | 85a8e6b80ae91eb00a0bce96a5cec8017e1b37da (diff) | |
| download | rust-8ed728babb057c0f736a63a69ba772e45278148f.tar.gz rust-8ed728babb057c0f736a63a69ba772e45278148f.zip | |
core: Inherit the any module
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 26e8e18909c..356b653281e 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -137,6 +137,7 @@ extern crate core; #[cfg(not(test))] pub use ops = core::ops; #[cfg(not(test))] pub use ty = core::ty; +pub use core::any; pub use core::cast; pub use core::char; pub use core::container; @@ -218,8 +219,6 @@ pub mod iter; pub mod to_str; pub mod clone; pub mod hash; -pub mod default; -pub mod any; /* Common data structures */ |
