Rollup merge of #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.
This commit is contained in:
commit
4d5e5a6ec0
6 changed files with 10 additions and 10 deletions
|
@ -1,8 +1,8 @@
|
||||||
# `infer_static_outlives_requirements`
|
# `infer_static_outlives_requirements`
|
||||||
|
|
||||||
The tracking issue for this feature is: [#44493]
|
The tracking issue for this feature is: [#54185]
|
||||||
|
|
||||||
[#44493]: https://github.com/rust-lang/rust/issues/44493
|
[#54185]: https://github.com/rust-lang/rust/issues/54185
|
||||||
|
|
||||||
------------------------
|
------------------------
|
||||||
The `infer_static_outlives_requirements` feature indicates that certain
|
The `infer_static_outlives_requirements` feature indicates that certain
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# `member_constraints`
|
# `member_constraints`
|
||||||
|
|
||||||
The tracking issue for this feature is: [#61977]
|
The tracking issue for this feature is: [#61997]
|
||||||
|
|
||||||
[#61977]: https://github.com/rust-lang/rust/issues/61977
|
[#61997]: https://github.com/rust-lang/rust/issues/61997
|
||||||
|
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
|
|
|
@ -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),
|
||||||
|
@ -481,7 +481,7 @@ declare_features! (
|
||||||
(active, arbitrary_enum_discriminant, "1.37.0", Some(60553), None),
|
(active, arbitrary_enum_discriminant, "1.37.0", Some(60553), None),
|
||||||
|
|
||||||
/// Allows `impl Trait` with multiple unrelated lifetimes.
|
/// Allows `impl Trait` with multiple unrelated lifetimes.
|
||||||
(active, member_constraints, "1.37.0", Some(61977), None),
|
(active, member_constraints, "1.37.0", Some(61997), None),
|
||||||
|
|
||||||
/// Allows `async || body` closures.
|
/// Allows `async || body` closures.
|
||||||
(active, async_closure, "1.37.0", Some(62290), None),
|
(active, async_closure, "1.37.0", Some(62290), None),
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue