1
Fork 0

Fix issue number of repr128

This commit is contained in:
Yuki Okushi 2020-01-16 11:58:28 +09:00
parent bf0a7845d7
commit 49d8aebbf3
4 changed files with 5 additions and 5 deletions

View file

@ -1,8 +1,8 @@
# `repr128` # `repr128`
The tracking issue for this feature is: [#35118] The tracking issue for this feature is: [#56071]
[#35118]: https://github.com/rust-lang/rust/issues/35118 [#56071]: https://github.com/rust-lang/rust/issues/56071
------------------------ ------------------------

View file

@ -333,7 +333,7 @@ declare_features! (
(active, abi_ptx, "1.15.0", Some(38788), None), (active, abi_ptx, "1.15.0", Some(38788), None),
/// Allows the `#[repr(i128)]` attribute for enums. /// Allows the `#[repr(i128)]` attribute for enums.
(active, repr128, "1.16.0", Some(35118), None), (active, repr128, "1.16.0", Some(56071), None),
/// Allows `#[link(kind="static-nobundle"...)]`. /// Allows `#[link(kind="static-nobundle"...)]`.
(active, static_nobundle, "1.16.0", Some(37403), None), (active, static_nobundle, "1.16.0", Some(37403), None),

View file

@ -6,7 +6,7 @@ LL | | Bar(u64),
LL | | } LL | | }
| |_^ | |_^
| |
= note: for more information, see https://github.com/rust-lang/rust/issues/35118 = note: for more information, see https://github.com/rust-lang/rust/issues/56071
= help: add `#![feature(repr128)]` to the crate attributes to enable = help: add `#![feature(repr128)]` to the crate attributes to enable
error: aborting due to previous error error: aborting due to previous error

View file

@ -6,7 +6,7 @@ LL | | A(u64)
LL | | } LL | | }
| |_^ | |_^
| |
= note: for more information, see https://github.com/rust-lang/rust/issues/35118 = note: for more information, see https://github.com/rust-lang/rust/issues/56071
= help: add `#![feature(repr128)]` to the crate attributes to enable = help: add `#![feature(repr128)]` to the crate attributes to enable
error: aborting due to previous error error: aborting due to previous error