From 46b818e276a83b50f6f68f9f54995e4f5a474f88 Mon Sep 17 00:00:00 2001 From: memoryruins Date: Fri, 10 Aug 2018 06:28:24 -0400 Subject: [PATCH] [nll] librustc_codegen_llvm: enable feature(nll) for bootstrap --- src/librustc_codegen_llvm/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/librustc_codegen_llvm/lib.rs b/src/librustc_codegen_llvm/lib.rs index 9599ccfe979..f66c83cac7c 100644 --- a/src/librustc_codegen_llvm/lib.rs +++ b/src/librustc_codegen_llvm/lib.rs @@ -26,6 +26,7 @@ #![feature(in_band_lifetimes)] #![allow(unused_attributes)] #![feature(libc)] +#![cfg_attr(not(stage0), feature(nll))] #![feature(quote)] #![feature(range_contains)] #![feature(rustc_diagnostic_macros)]