Skip to content

Commit 83767d9

Browse files
committed
Add pub_macro_rules to the list of removed features
1 parent 0e4d2fd commit 83767d9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

compiler/rustc_feature/src/removed.rs

+2
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ declare_features! (
134134
which is available from cargo build scripts with `cargo:rustc-link-arg` now")),
135135
/// Allows using `#[main]` to replace the entrypoint `#[lang = "start"]` calls.
136136
(removed, main, "1.53.0", Some(29634), None, None),
137+
(removed, pub_macro_rules, "1.53.0", Some(78855), None,
138+
Some("removed due to being incomplete, in particular it does not work across crates")),
137139

138140
// -------------------------------------------------------------------------
139141
// feature-group-end: removed features

compiler/rustc_span/src/symbol.rs

+1
Original file line numberDiff line numberDiff line change
@@ -903,6 +903,7 @@ symbols! {
903903
ptr_null,
904904
ptr_null_mut,
905905
ptr_offset_from,
906+
pub_macro_rules,
906907
pub_restricted,
907908
pure,
908909
pushpop_unsafe,

0 commit comments

Comments
 (0)