From f8367a3450e677ba11b0548d466d25b0f5265d95 Mon Sep 17 00:00:00 2001 From: memoryruins Date: Thu, 9 Aug 2018 01:49:46 -0400 Subject: [PATCH] librustc_borrowck: enable feature(nll) for bootstrap --- src/librustc_borrowck/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/librustc_borrowck/lib.rs b/src/librustc_borrowck/lib.rs index c7e7465a353..aa85582432b 100644 --- a/src/librustc_borrowck/lib.rs +++ b/src/librustc_borrowck/lib.rs @@ -14,6 +14,7 @@ #![allow(non_camel_case_types)] +#![cfg_attr(not(stage0), feature(nll))] #![feature(quote)] #![recursion_limit="256"]