We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e115881 + 91c6a5a commit 97e3928Copy full SHA for 97e3928
src/doc/unstable-book/src/language-features/infer-static-outlives-requirements.md
@@ -1,8 +1,8 @@
1
# `infer_static_outlives_requirements`
2
3
-The tracking issue for this feature is: [#44493]
+The tracking issue for this feature is: [#54185]
4
5
-[#44493]: https://github.com/rust-lang/rust/issues/44493
+[#54185]: https://github.com/rust-lang/rust/issues/54185
6
7
------------------------
8
The `infer_static_outlives_requirements` feature indicates that certain
src/doc/unstable-book/src/language-features/member-constraints.md
# `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
src/doc/unstable-book/src/language-features/repr128.md
# `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
src/librustc_feature/active.rs
@@ -333,7 +333,7 @@ declare_features! (
333
(active, abi_ptx, "1.15.0", Some(38788), None),
334
335
/// Allows the `#[repr(i128)]` attribute for enums.
336
- (active, repr128, "1.16.0", Some(35118), None),
+ (active, repr128, "1.16.0", Some(56071), None),
337
338
/// Allows `#[link(kind="static-nobundle"...)]`.
339
(active, static_nobundle, "1.16.0", Some(37403), None),
@@ -481,7 +481,7 @@ declare_features! (
481
(active, arbitrary_enum_discriminant, "1.37.0", Some(60553), None),
482
483
/// Allows `impl Trait` with multiple unrelated lifetimes.
484
- (active, member_constraints, "1.37.0", Some(61977), None),
+ (active, member_constraints, "1.37.0", Some(61997), None),
485
486
/// Allows `async || body` closures.
487
(active, async_closure, "1.37.0", Some(62290), None),
src/test/ui/error-codes/E0658.stderr
@@ -6,7 +6,7 @@ LL | | Bar(u64),
LL | | }
| |_^
|
9
- = 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
10
= help: add `#![feature(repr128)]` to the crate attributes to enable
11
12
error: aborting due to previous error
src/test/ui/feature-gates/feature-gate-repr128.stderr
@@ -6,7 +6,7 @@ LL | | A(u64)
0 commit comments