From 9207cc9bd90be84edac8d2d331a47adba50e07af Mon Sep 17 00:00:00 2001 From: memoryruins Date: Thu, 9 Aug 2018 09:21:01 -0400 Subject: [PATCH] [nll] librustc_allocator: enable feature(nll) for bootstrap --- src/librustc_allocator/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/librustc_allocator/lib.rs b/src/librustc_allocator/lib.rs index b217d3665a2..a920bb0f2b9 100644 --- a/src/librustc_allocator/lib.rs +++ b/src/librustc_allocator/lib.rs @@ -8,6 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +#![cfg_attr(not(stage0), feature(nll))] #![feature(rustc_private)] #[macro_use] extern crate log;