Skip to content

Commit

Permalink
Rollup merge of rust-lang#68265 - JohnTitor:fix-issue-number, r=Dylan…
Browse files Browse the repository at this point in the history
…-DPC

Fix some issue numbers of unstable features

Looking into the unstable book, some issue numbers are outdated.
  • Loading branch information
Dylan-DPC committed Jan 16, 2020
2 parents 69eee56 + 91c6a5a commit 4d5e5a6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
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

0 comments on commit 4d5e5a6

Please sign in to comment.