about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-03-05 18:33:58 -0800
committerBrian Anderson <banderson@mozilla.com>2015-03-23 14:40:26 -0700
commitdf290f127e923e0aacfe8223dd77f0fa222f0bc8 (patch)
tree65f8e1091b566595f7b5cae402c2121f22529db5 /src/libstd
parent7770ea706b2ba10ebf9112b38af9aaad5cc6f24c (diff)
downloadrust-df290f127e923e0aacfe8223dd77f0fa222f0bc8.tar.gz
rust-df290f127e923e0aacfe8223dd77f0fa222f0bc8.zip
Require feature attributes, and add them where necessary
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index b055796ba54..1aa2189d315 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -128,7 +128,7 @@
 #![feature(unique)]
 #![feature(allow_internal_unstable)]
 #![feature(str_char)]
-#![cfg_attr(test, feature(test, rustc_private))]
+#![cfg_attr(test, feature(test, rustc_private, std_misc))]
 
 // Don't link to std. We are std.
 #![feature(no_std)]