Skip to content

Commit 95dc26c

Browse files
committed
update the tracking issue number
1 parent f5c06a9 commit 95dc26c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

compiler/rustc_feature/src/unstable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ declare_features! (
355355
/// Allows `extern "C-cmse-nonsecure-call" fn()`.
356356
(unstable, abi_c_cmse_nonsecure_call, "1.51.0", Some(81391)),
357357
/// Allows `extern "custom" fn()`.
358-
(unstable, abi_custom, "CURRENT_RUSTC_VERSION", Some(140566)),
358+
(unstable, abi_custom, "CURRENT_RUSTC_VERSION", Some(140829)),
359359
/// Allows `extern "gpu-kernel" fn()`.
360360
(unstable, abi_gpu_kernel, "1.86.0", Some(135467)),
361361
/// Allows `extern "msp430-interrupt" fn()`.

tests/ui/feature-gates/feature-gate-abi-custom.stderr

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ error[E0658]: the extern "custom" ABI is experimental and subject to change
4848
LL | unsafe extern "custom" fn f7() {
4949
| ^^^^^^^^
5050
|
51-
= note: see issue #140566 <https://github.com/rust-lang/rust/issues/140566> for more information
51+
= note: see issue #140829 <https://github.com/rust-lang/rust/issues/140829> for more information
5252
= help: add `#![feature(abi_custom)]` to the crate attributes to enable
5353
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
5454

@@ -58,7 +58,7 @@ error[E0658]: the extern "custom" ABI is experimental and subject to change
5858
LL | extern "custom" fn m7();
5959
| ^^^^^^^^
6060
|
61-
= note: see issue #140566 <https://github.com/rust-lang/rust/issues/140566> for more information
61+
= note: see issue #140829 <https://github.com/rust-lang/rust/issues/140829> for more information
6262
= help: add `#![feature(abi_custom)]` to the crate attributes to enable
6363
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
6464

@@ -68,7 +68,7 @@ error[E0658]: the extern "custom" ABI is experimental and subject to change
6868
LL | extern "custom" fn dm7() {
6969
| ^^^^^^^^
7070
|
71-
= note: see issue #140566 <https://github.com/rust-lang/rust/issues/140566> for more information
71+
= note: see issue #140829 <https://github.com/rust-lang/rust/issues/140829> for more information
7272
= help: add `#![feature(abi_custom)]` to the crate attributes to enable
7373
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
7474

@@ -78,7 +78,7 @@ error[E0658]: the extern "custom" ABI is experimental and subject to change
7878
LL | extern "custom" fn m7() {
7979
| ^^^^^^^^
8080
|
81-
= note: see issue #140566 <https://github.com/rust-lang/rust/issues/140566> for more information
81+
= note: see issue #140829 <https://github.com/rust-lang/rust/issues/140829> for more information
8282
= help: add `#![feature(abi_custom)]` to the crate attributes to enable
8383
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
8484

@@ -88,7 +88,7 @@ error[E0658]: the extern "custom" ABI is experimental and subject to change
8888
LL | extern "custom" fn im7() {
8989
| ^^^^^^^^
9090
|
91-
= note: see issue #140566 <https://github.com/rust-lang/rust/issues/140566> for more information
91+
= note: see issue #140829 <https://github.com/rust-lang/rust/issues/140829> for more information
9292
= help: add `#![feature(abi_custom)]` to the crate attributes to enable
9393
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
9494

@@ -98,7 +98,7 @@ error[E0658]: the extern "custom" ABI is experimental and subject to change
9898
LL | type A7 = extern "custom" fn();
9999
| ^^^^^^^^
100100
|
101-
= note: see issue #140566 <https://github.com/rust-lang/rust/issues/140566> for more information
101+
= note: see issue #140829 <https://github.com/rust-lang/rust/issues/140829> for more information
102102
= help: add `#![feature(abi_custom)]` to the crate attributes to enable
103103
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
104104

@@ -108,7 +108,7 @@ error[E0658]: the extern "custom" ABI is experimental and subject to change
108108
LL | extern "custom" {}
109109
| ^^^^^^^^
110110
|
111-
= note: see issue #140566 <https://github.com/rust-lang/rust/issues/140566> for more information
111+
= note: see issue #140829 <https://github.com/rust-lang/rust/issues/140829> for more information
112112
= help: add `#![feature(abi_custom)]` to the crate attributes to enable
113113
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
114114

0 commit comments

Comments
 (0)