Skip to content

Commit

Permalink
Rollup merge of #72713 - rust-lang:jonas-schievink-patch-2, r=Mark-Si…
Browse files Browse the repository at this point in the history
…mulacrum

Whitelist #[allow_internal_unstable]

This should hopefully work around #65023, which currently makes almost every bootstrap fail for me.
  • Loading branch information
JohnTitor committed May 29, 2020
2 parents 054fbf4 + d4ef174 commit 5207428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_feature/builtin_attrs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
// FIXME(#14407)
ungated!(rustc_const_stable, Whitelisted, template!(List: r#"feature = "name""#)),
gated!(
allow_internal_unstable, Normal, template!(Word, List: "feat1, feat2, ..."),
allow_internal_unstable, Whitelisted, template!(Word, List: "feat1, feat2, ..."),
"allow_internal_unstable side-steps feature gating and stability checks",
),
gated!(
Expand Down

0 comments on commit 5207428

Please sign in to comment.