Skip to content

Commit bbe832d

Browse files
committed
cfg-attr-multi: Change issue number to actual tracking issue
1 parent 35e6c65 commit bbe832d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/doc/unstable-book/src/language-features/cfg-attr-multi.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# `cfg_attr_multi`
22

3-
The tracking issue for this feature is: [#555666]
3+
The tracking issue for this feature is: [#54881]
44
The RFC for this feature is: [#2539]
55

6-
[#555666]: https://github.com/rust-lang/rust/issues/555666
6+
[#54881]: https://github.com/rust-lang/rust/issues/54881
77
[#2539]: https://github.com/rust-lang/rfcs/pull/2539
88

99
------------------------

src/libsyntax/feature_gate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ declare_features! (
517517
(active, impl_trait_in_bindings, "1.30.0", Some(34511), None),
518518

519519
// #[cfg_attr(predicate, multiple, attributes, here)]
520-
(active, cfg_attr_multi, "1.31.0", Some(555666), None),
520+
(active, cfg_attr_multi, "1.31.0", Some(54881), None),
521521
);
522522

523523
declare_features! (

src/test/ui/feature-gates/feature-gate-cfg-attr-multi-1.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: cfg_attr with zero or more than one attributes is experimental (see issue #555666)
1+
error[E0658]: cfg_attr with zero or more than one attributes is experimental (see issue #54881)
22
--> $DIR/feature-gate-cfg-attr-multi-1.rs:3:1
33
|
44
LL | #![cfg_attr(all(), warn(nonstandard_style), allow(unused_attributes))]

src/test/ui/feature-gates/feature-gate-cfg-attr-multi-2.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: cfg_attr with zero or more than one attributes is experimental (see issue #555666)
1+
error[E0658]: cfg_attr with zero or more than one attributes is experimental (see issue #54881)
22
--> $DIR/feature-gate-cfg-attr-multi-2.rs:1:1
33
|
44
LL | #![cfg_attr(all(),)]

0 commit comments

Comments
 (0)