diff options
| author | bors <bors@rust-lang.org> | 2018-03-18 07:35:43 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-03-18 07:35:43 +0000 |
| commit | 7c396ebd0b352f8713cad63aeb49ee392c147ab8 (patch) | |
| tree | fbe9f0b27e984ff7317a180307c4088eb8dd46f9 /src/libsyntax | |
| parent | 5e3ecdce4e42ccc34c49f32f81be71ae00f2cf11 (diff) | |
| parent | ef3b4e1f5bfb8cf5347b086ed60aefd519a3335d (diff) | |
| download | rust-7c396ebd0b352f8713cad63aeb49ee392c147ab8.tar.gz rust-7c396ebd0b352f8713cad63aeb49ee392c147ab8.zip | |
Auto merge of #48985 - scalexm:lowering, r=nikomatsakis
MVP for chalkification r? @nikomatsakis
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index a5af8564057..fa600cd6860 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -832,6 +832,13 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG across crates and will never be stable", cfg_fn!(rustc_attrs))), + ("rustc_dump_program_clauses", Whitelisted, Gated(Stability::Unstable, + "rustc_attrs", + "the `#[rustc_dump_program_clauses]` \ + attribute is just used for rustc unit \ + tests and will never be stable", + cfg_fn!(rustc_attrs))), + // RFC #2094 ("nll", Whitelisted, Gated(Stability::Unstable, "nll", |
