From ed55520371c349666ba048a3e602d0b7018bf26d Mon Sep 17 00:00:00 2001 From: memoryruins Date: Thu, 9 Aug 2018 09:20:41 -0400 Subject: [PATCH] [nll] librustc: enable feature(nll) for bootstrap --- src/librustc/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index 804481846af..3cc1ca01b78 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -51,6 +51,7 @@ #![feature(never_type)] #![feature(exhaustive_patterns)] #![feature(extern_types)] +#![cfg_attr(not(stage0), feature(nll))] #![feature(non_exhaustive)] #![feature(proc_macro_internals)] #![feature(quote)]