From: memoryruins Date: Thu, 9 Aug 2018 10:48:10 +0000 (-0400) Subject: [nll] libfmt_macros: enable feature(nll) for bootstrap X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=3ed965ab5834e976b57e9ae06e8da8bfb16c0407;hp=63fe441db8a441bc68c754c33a04f57f0f8a8b77;p=rust.git [nll] libfmt_macros: enable feature(nll) for bootstrap --- diff --git a/src/libfmt_macros/lib.rs b/src/libfmt_macros/lib.rs index 373db1f1664..d2209da0ca3 100644 --- a/src/libfmt_macros/lib.rs +++ b/src/libfmt_macros/lib.rs @@ -20,6 +20,8 @@ html_playground_url = "https://play.rust-lang.org/", test(attr(deny(warnings))))] +#![cfg_attr(not(stage0), feature(nll))] + pub use self::Piece::*; pub use self::Position::*; pub use self::Alignment::*;