Skip to content

Commit 97e3928

Browse files
authored
Rollup merge of rust-lang#68265 - JohnTitor:fix-issue-number, r=Dylan-DPC
Fix some issue numbers of unstable features Looking into the unstable book, some issue numbers are outdated.
2 parents e115881 + 91c6a5a commit 97e3928

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

src/doc/unstable-book/src/language-features/infer-static-outlives-requirements.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# `infer_static_outlives_requirements`
22

3-
The tracking issue for this feature is: [#44493]
3+
The tracking issue for this feature is: [#54185]
44

5-
[#44493]: https://github.com/rust-lang/rust/issues/44493
5+
[#54185]: https://github.com/rust-lang/rust/issues/54185
66

77
------------------------
88
The `infer_static_outlives_requirements` feature indicates that certain

src/doc/unstable-book/src/language-features/member-constraints.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# `member_constraints`
22

3-
The tracking issue for this feature is: [#61977]
3+
The tracking issue for this feature is: [#61997]
44

5-
[#61977]: https://github.com/rust-lang/rust/issues/61977
5+
[#61997]: https://github.com/rust-lang/rust/issues/61997
66

77
------------------------
88

src/doc/unstable-book/src/language-features/repr128.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# `repr128`
22

3-
The tracking issue for this feature is: [#35118]
3+
The tracking issue for this feature is: [#56071]
44

5-
[#35118]: https://github.com/rust-lang/rust/issues/35118
5+
[#56071]: https://github.com/rust-lang/rust/issues/56071
66

77
------------------------
88

src/librustc_feature/active.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ declare_features! (
333333
(active, abi_ptx, "1.15.0", Some(38788), None),
334334

335335
/// Allows the `#[repr(i128)]` attribute for enums.
336-
(active, repr128, "1.16.0", Some(35118), None),
336+
(active, repr128, "1.16.0", Some(56071), None),
337337

338338
/// Allows `#[link(kind="static-nobundle"...)]`.
339339
(active, static_nobundle, "1.16.0", Some(37403), None),
@@ -481,7 +481,7 @@ declare_features! (
481481
(active, arbitrary_enum_discriminant, "1.37.0", Some(60553), None),
482482

483483
/// Allows `impl Trait` with multiple unrelated lifetimes.
484-
(active, member_constraints, "1.37.0", Some(61977), None),
484+
(active, member_constraints, "1.37.0", Some(61997), None),
485485

486486
/// Allows `async || body` closures.
487487
(active, async_closure, "1.37.0", Some(62290), None),

src/test/ui/error-codes/E0658.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | | Bar(u64),
66
LL | | }
77
| |_^
88
|
9-
= note: for more information, see https://github.com/rust-lang/rust/issues/35118
9+
= note: for more information, see https://github.com/rust-lang/rust/issues/56071
1010
= help: add `#![feature(repr128)]` to the crate attributes to enable
1111

1212
error: aborting due to previous error

src/test/ui/feature-gates/feature-gate-repr128.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | | A(u64)
66
LL | | }
77
| |_^
88
|
9-
= note: for more information, see https://github.com/rust-lang/rust/issues/35118
9+
= note: for more information, see https://github.com/rust-lang/rust/issues/56071
1010
= help: add `#![feature(repr128)]` to the crate attributes to enable
1111

1212
error: aborting due to previous error

0 commit comments

Comments
 (0)