about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2021-04-23 10:53:34 -0300
committerSantiago Pastorino <spastorino@gmail.com>2021-04-23 10:58:07 -0300
commit83767d97f0ac4e644340792dd7209bbcd9306647 (patch)
tree0b2641dc0e102c8d515d5426c78423946c45fb83
parent0e4d2fd447602f8cc9cf2eb9851cdfddfbcd6f3d (diff)
downloadrust-83767d97f0ac4e644340792dd7209bbcd9306647.tar.gz
rust-83767d97f0ac4e644340792dd7209bbcd9306647.zip
Add pub_macro_rules to the list of removed features
-rw-r--r--compiler/rustc_feature/src/removed.rs2
-rw-r--r--compiler/rustc_span/src/symbol.rs1
2 files changed, 3 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/removed.rs b/compiler/rustc_feature/src/removed.rs
index c2ad339ed41..fa8ef182aed 100644
--- a/compiler/rustc_feature/src/removed.rs
+++ b/compiler/rustc_feature/src/removed.rs
@@ -134,6 +134,8 @@ declare_features! (
            which is available from cargo build scripts with `cargo:rustc-link-arg` now")),
     /// Allows using `#[main]` to replace the entrypoint `#[lang = "start"]` calls.
     (removed, main, "1.53.0", Some(29634), None, None),
+    (removed, pub_macro_rules, "1.53.0", Some(78855), None,
+     Some("removed due to being incomplete, in particular it does not work across crates")),
 
     // -------------------------------------------------------------------------
     // feature-group-end: removed features
diff --git a/compiler/rustc_span/src/symbol.rs b/compiler/rustc_span/src/symbol.rs
index 681206dfb6a..52270f0e627 100644
--- a/compiler/rustc_span/src/symbol.rs
+++ b/compiler/rustc_span/src/symbol.rs
@@ -903,6 +903,7 @@ symbols! {
         ptr_null,
         ptr_null_mut,
         ptr_offset_from,
+        pub_macro_rules,
         pub_restricted,
         pure,
         pushpop_unsafe,