diff options
| author | scalexm <martin.alex32@hotmail.fr> | 2018-03-10 12:44:33 +0100 |
|---|---|---|
| committer | scalexm <martin.alex32@hotmail.fr> | 2018-03-14 13:39:58 +0100 |
| commit | 1271f0bd2519d63b427ea36a752f7de32bc5a7a2 (patch) | |
| tree | 9448a5e7b6ea07b201f9598b9f2d63930f3f8f15 /src/libsyntax | |
| parent | 8c4ff22a2d745097197c659ef9e3b04b8ceeb070 (diff) | |
| download | rust-1271f0bd2519d63b427ea36a752f7de32bc5a7a2.tar.gz rust-1271f0bd2519d63b427ea36a752f7de32bc5a7a2.zip | |
Add MVP for chalkification
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 ec9a15d9f2b..ea2d907331a 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -831,6 +831,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", |
