about summary refs log tree commit diff
path: root/library/alloc/src
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2021-10-19 14:54:35 +0200
committerMara Bos <m-ou.se@m-ou.se>2021-10-19 14:54:35 +0200
commit6fdcedc9c8eff1f56c1568bb936638f1249cd2aa (patch)
treec59de4d8ea581d240e60c4dd2937b996ffa3fe11 /library/alloc/src
parent2104ac5706df99777d7bb7bebc264d3f439fba9f (diff)
downloadrust-6fdcedc9c8eff1f56c1568bb936638f1249cd2aa.tar.gz
rust-6fdcedc9c8eff1f56c1568bb936638f1249cd2aa.zip
Reenable feature(nll) in alloc.
Diffstat (limited to 'library/alloc/src')
-rw-r--r--library/alloc/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/alloc/src/lib.rs b/library/alloc/src/lib.rs
index 6f2c24422fd..285d7755c06 100644
--- a/library/alloc/src/lib.rs
+++ b/library/alloc/src/lib.rs
@@ -146,6 +146,7 @@
 #![feature(min_specialization)]
 #![feature(negative_impls)]
 #![feature(never_type)]
+#![feature(nll)] // Not necessary, but here to test the `nll` feature.
 #![feature(rustc_allow_const_fn_unstable)]
 #![feature(rustc_attrs)]
 #![feature(staged_api)]