about summary refs log tree commit diff
path: root/src/libstd/prelude
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-06 15:57:50 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-06 16:10:37 -0800
commit56a9e2fcd5f0b737df81a39b22f72a55c95b44a2 (patch)
treec49c538f8e87842bb6371f97ece94ceaa0bcca8e /src/libstd/prelude
parent26cd8eae48ea99bda183c5224bc423991ccfaf1f (diff)
downloadrust-56a9e2fcd5f0b737df81a39b22f72a55c95b44a2.tar.gz
rust-56a9e2fcd5f0b737df81a39b22f72a55c95b44a2.zip
Test fixes and rebase conflicts
Diffstat (limited to 'src/libstd/prelude')
-rw-r--r--src/libstd/prelude/v1.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstd/prelude/v1.rs b/src/libstd/prelude/v1.rs
index 06a9303e0d7..dcb342b9ca2 100644
--- a/src/libstd/prelude/v1.rs
+++ b/src/libstd/prelude/v1.rs
@@ -14,7 +14,10 @@
 
 // Reexported core operators
 #[stable] #[doc(no_inline)] pub use marker::{Copy, Send, Sized, Sync};
-#[stable] #[doc(no_inline)] pub use ops::{Drop, Fn, FnMut, FnOnce, FullRange};
+#[stable] #[doc(no_inline)] pub use ops::{Drop, Fn, FnMut, FnOnce};
+
+// TEMPORARY
+#[unstable] #[doc(no_inline)] pub use ops::{Index, IndexMut, FullRange};
 
 // Reexported functions
 #[stable] #[doc(no_inline)] pub use mem::drop;