We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec8a805 commit ead6e16Copy full SHA for ead6e16
src/libcore/lib.rs
@@ -31,3 +31,4 @@ pub mod ptr;
31
/* Core language traits */
32
33
pub mod kinds;
34
+pub mod ops;
src/libstd/ops.rs renamed to src/libcore/ops.rs
src/libstd/lib.rs
@@ -134,6 +134,7 @@ extern crate core;
134
#[cfg(test)] pub use owned = realstd::owned;
135
136
#[cfg(not(test))] pub use kinds = core::kinds;
137
+#[cfg(not(test))] pub use ops = core::ops;
138
139
pub use core::cast;
140
pub use core::intrinsics;
@@ -204,7 +205,6 @@ pub mod gc;
204
205
206
207
-#[cfg(not(test))] pub mod ops;
208
#[cfg(not(test))] pub mod cmp;
209
#[cfg(not(test))] pub mod ty;
210
#[cfg(not(test))] pub mod owned;
0 commit comments