From ac9b7be50b5009308c12ca3e161ee2d9ca1d7258 Mon Sep 17 00:00:00 2001 From: memoryruins Date: Thu, 9 Aug 2018 15:34:54 -0400 Subject: [PATCH] [nll] librustc_typeck: enable feature(nll) for bootstrap --- src/librustc_typeck/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/librustc_typeck/lib.rs b/src/librustc_typeck/lib.rs index ecc167d5a19..62f93ea20e4 100644 --- a/src/librustc_typeck/lib.rs +++ b/src/librustc_typeck/lib.rs @@ -76,6 +76,7 @@ This API is completely unstable and subject to change. #![feature(crate_visibility_modifier)] #![feature(exhaustive_patterns)] #![feature(iterator_find_map)] +#![cfg_attr(not(stage0), feature(nll))] #![feature(quote)] #![feature(refcell_replace_swap)] #![feature(rustc_diagnostic_macros)]