about summary refs log tree commit diff
path: root/src/libstd/prelude/v1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/prelude/v1.rs')
-rw-r--r--src/libstd/prelude/v1.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/prelude/v1.rs b/src/libstd/prelude/v1.rs
index d0dcf77002f..06a9303e0d7 100644
--- a/src/libstd/prelude/v1.rs
+++ b/src/libstd/prelude/v1.rs
@@ -13,9 +13,8 @@
 #![stable]
 
 // Reexported core operators
-#[stable] #[doc(no_inline)] pub use kinds::{Copy, Send, Sized, Sync};
+#[stable] #[doc(no_inline)] pub use marker::{Copy, Send, Sized, Sync};
 #[stable] #[doc(no_inline)] pub use ops::{Drop, Fn, FnMut, FnOnce, FullRange};
-#[unstable] #[doc(no_inline)] pub use ops::{Index, IndexMut};
 
 // Reexported functions
 #[stable] #[doc(no_inline)] pub use mem::drop;