From d9f2b51a89b1d802ac98636c6020f398b0606bc1 Mon Sep 17 00:00:00 2001 From: memoryruins Date: Thu, 9 Aug 2018 15:34:05 -0400 Subject: [PATCH] [nll] librustc_msan: enable feature(nll) for bootstrap --- src/librustc_msan/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/librustc_msan/lib.rs b/src/librustc_msan/lib.rs index 0c78fd74a23..b3ba86ad8a4 100644 --- a/src/librustc_msan/lib.rs +++ b/src/librustc_msan/lib.rs @@ -10,6 +10,7 @@ #![sanitizer_runtime] #![feature(alloc_system)] +#![cfg_attr(not(stage0), feature(nll))] #![feature(sanitizer_runtime)] #![feature(staged_api)] #![no_std]