Skip to content

Commit 95c146a

Browse files
committed
Fix tracking issue number for feature(macro_attr)
The ability to define an attribute macro with `macro_rules!` is tracked at #143547, not #83527
1 parent 959b450 commit 95c146a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_feature/src/unstable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ declare_features! (
554554
/// Allows fused `loop`/`match` for direct intraprocedural jumps.
555555
(incomplete, loop_match, "1.90.0", Some(132306)),
556556
/// Allow `macro_rules!` attribute rules
557-
(unstable, macro_attr, "1.91.0", Some(83527)),
557+
(unstable, macro_attr, "1.91.0", Some(143547)),
558558
/// Allow `macro_rules!` derive rules
559559
(unstable, macro_derive, "1.91.0", Some(143549)),
560560
/// Give access to additional metadata about declarative macro meta-variables.

tests/ui/feature-gates/feature-gate-macro-attr.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0658]: `macro_rules!` attributes are unstable
44
LL | macro_rules! myattr { attr() {} => {} }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
|
7-
= note: see issue #83527 <https://github.com/rust-lang/rust/issues/83527> for more information
7+
= note: see issue #143547 <https://github.com/rust-lang/rust/issues/143547> for more information
88
= help: add `#![feature(macro_attr)]` to the crate attributes to enable
99
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
1010

0 commit comments

Comments
 (0)