diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2018-08-08 18:10:19 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2018-08-24 13:27:38 -0400 |
| commit | d7d4d7c8d5620b7b120304cc5eecf25b499e394a (patch) | |
| tree | a1ba9d1df697e80e03259426083d26072f1d67af /src/libsyntax | |
| parent | 1884fe35b6b30e02a65bf13a542f0798f220724f (diff) | |
| download | rust-d7d4d7c8d5620b7b120304cc5eecf25b499e394a.tar.gz rust-d7d4d7c8d5620b7b120304cc5eecf25b499e394a.zip | |
add a `user_substs` table and store the annotations in there
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 4ed96d26906..28d27836034 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -865,6 +865,12 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG is just used for rustc unit tests \ and will never be stable", cfg_fn!(rustc_attrs))), + ("rustc_dump_user_substs", Whitelisted, Gated(Stability::Unstable, + "rustc_attrs", + "the `#[rustc_error]` attribute \ + is just used for rustc unit tests \ + and will never be stable", + cfg_fn!(rustc_attrs))), ("rustc_if_this_changed", Whitelisted, Gated(Stability::Unstable, "rustc_attrs", "the `#[rustc_if_this_changed]` attribute \ |
