Skip to content

Commit 49d8aeb

Browse files
committed
Fix issue number of repr128
1 parent bf0a784 commit 49d8aeb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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),

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)