Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# `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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# `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

------------------------

Expand Down
4 changes: 2 additions & 2 deletions src/doc/unstable-book/src/language-features/repr128.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# `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

------------------------

Expand Down
4 changes: 2 additions & 2 deletions src/librustc_feature/active.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ declare_features! (
(active, abi_ptx, "1.15.0", Some(38788), None),

/// 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"...)]`.
(active, static_nobundle, "1.16.0", Some(37403), None),
Expand Down Expand Up @@ -481,7 +481,7 @@ declare_features! (
(active, arbitrary_enum_discriminant, "1.37.0", Some(60553), None),

/// 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.
(active, async_closure, "1.37.0", Some(62290), None),
Expand Down
2 changes: 1 addition & 1 deletion src/test/ui/error-codes/E0658.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LL | | Bar(u64),
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

error: aborting due to previous error
Expand Down
2 changes: 1 addition & 1 deletion src/test/ui/feature-gates/feature-gate-repr128.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LL | | A(u64)
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

error: aborting due to previous error
Expand Down