about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorNikolai Vazquez <nvazquez1297@gmail.com>2017-09-29 13:30:03 -0400
committerNikolai Vazquez <nvazquez1297@gmail.com>2017-09-29 13:30:03 -0400
commitd9d877221f65b26e52f49bfc639ef705ff396deb (patch)
tree9ffd10c2283deaaea7737433fd19f1bcb2a93401 /src/libstd
parentd2cf66b26c388293e5ad89c6a46e6e09a4052bb8 (diff)
downloadrust-d9d877221f65b26e52f49bfc639ef705ff396deb.tar.gz
rust-d9d877221f65b26e52f49bfc639ef705ff396deb.zip
Enable required features for core::array in libstd
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 9fc7e2c01aa..05555d876a8 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -243,6 +243,7 @@
 #![feature(allow_internal_unsafe)]
 #![feature(allow_internal_unstable)]
 #![feature(align_offset)]
+#![feature(array_error_internals)]
 #![feature(asm)]
 #![feature(box_syntax)]
 #![feature(cfg_target_has_atomic)]
@@ -257,6 +258,7 @@
 #![feature(core_intrinsics)]
 #![feature(dropck_eyepatch)]
 #![feature(exact_size_is_empty)]
+#![feature(fixed_size_array)]
 #![feature(float_from_str_radix)]
 #![feature(fn_traits)]
 #![feature(fnbox)]