about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2018-08-09 21:35:01 +0800
committerkennytm <kennytm@gmail.com>2018-08-10 01:01:30 +0800
commitbb0151c6d4390e99cb1c545bd24f01545344510e (patch)
tree40f27f95679be4486e9e2fcce95753173aba34c9 /src/liballoc
parent746abc32659e193dd97d34ab2fceecebd80dfb38 (diff)
parentce7f0c483d4e9e116f4e35a378c6637c808faaab (diff)
downloadrust-bb0151c6d4390e99cb1c545bd24f01545344510e.tar.gz
rust-bb0151c6d4390e99cb1c545bd24f01545344510e.zip
Rollup merge of #53211 - memoryruins:nll_bootstrap, r=nikomatsakis
[nll] enable feature(nll) on various crates for bootstrap

#53172
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index d1b607bbe9b..bcdfd8c9aa5 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -76,6 +76,7 @@
 
 #![cfg_attr(not(test), feature(fn_traits))]
 #![cfg_attr(not(test), feature(generator_trait))]
+#![cfg_attr(not(stage0), feature(nll))]
 #![cfg_attr(test, feature(test))]
 
 #![feature(allocator_api)]