diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-04-30 20:24:32 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-07 08:13:06 -0700 |
| commit | ead6e16a600526b6125ad482d5e17e1f900730ce (patch) | |
| tree | 66afae4efd86281c8e2c34d44f54738928711e55 /src/libstd/lib.rs | |
| parent | ec8a805b6dafc78e692b0a0f8de1a56c5f0dcc0f (diff) | |
| download | rust-ead6e16a600526b6125ad482d5e17e1f900730ce.tar.gz rust-ead6e16a600526b6125ad482d5e17e1f900730ce.zip | |
core: Inherit the ops 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 350bb4bbaec..0ef623a558f 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -134,6 +134,7 @@ extern crate core; #[cfg(test)] pub use owned = realstd::owned; #[cfg(not(test))] pub use kinds = core::kinds; +#[cfg(not(test))] pub use ops = core::ops; pub use core::cast; pub use core::intrinsics; @@ -204,7 +205,6 @@ pub mod gc; /* Core language traits */ -#[cfg(not(test))] pub mod ops; #[cfg(not(test))] pub mod cmp; #[cfg(not(test))] pub mod ty; #[cfg(not(test))] pub mod owned; |
