about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2025-09-26 15:55:42 +0200
committerSimon Sapin <simon.sapin@exyr.org>2025-09-27 10:55:02 +0200
commit95c146a0c1ff987c8263a2ddb7dced4e5b545842 (patch)
tree3d953f4389f59e5c8e46a03c3e579f63bbcbaead /tests
parent959b450747f81e720be3a829665dd30e553e7fd7 (diff)
downloadrust-95c146a0c1ff987c8263a2ddb7dced4e5b545842.tar.gz
rust-95c146a0c1ff987c8263a2ddb7dced4e5b545842.zip
Fix tracking issue number for feature(macro_attr)
The ability to define an attribute macro with `macro_rules!` is tracked at https://github.com/rust-lang/rust/issues/143547, not https://github.com/rust-lang/rust/issues/83527
Diffstat (limited to 'tests')
-rw-r--r--tests/ui/feature-gates/feature-gate-macro-attr.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/feature-gates/feature-gate-macro-attr.stderr b/tests/ui/feature-gates/feature-gate-macro-attr.stderr
index b58418527c5..75bc93e8027 100644
--- a/tests/ui/feature-gates/feature-gate-macro-attr.stderr
+++ b/tests/ui/feature-gates/feature-gate-macro-attr.stderr
@@ -4,7 +4,7 @@ error[E0658]: `macro_rules!` attributes are unstable
 LL | macro_rules! myattr { attr() {} => {} }
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
-   = note: see issue #83527 <https://github.com/rust-lang/rust/issues/83527> for more information
+   = note: see issue #143547 <https://github.com/rust-lang/rust/issues/143547> for more information
    = help: add `#![feature(macro_attr)]` to the crate attributes to enable
    = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date