Skip to content

Commit 2c726c9

Browse files
committed
Update tracking issue of naked_functions
The original tracking issue was superseded by a new one (constrainted naked functions) and therefore is closed.
1 parent 1c20462 commit 2c726c9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

compiler/rustc_feature/src/unstable.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ declare_features! (
525525
/// Allows the `#[must_not_suspend]` attribute.
526526
(unstable, must_not_suspend, "1.57.0", Some(83310)),
527527
/// Allows using `#[naked]` on functions.
528-
(unstable, naked_functions, "1.9.0", Some(32408)),
528+
(unstable, naked_functions, "1.9.0", Some(90957)),
529529
/// Allows specifying the as-needed link modifier
530530
(unstable, native_link_modifiers_as_needed, "1.53.0", Some(81490)),
531531
/// Allow negative trait implementations.

src/tools/rust-analyzer/crates/ide-db/src/generated/lints.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6407,9 +6407,9 @@ The tracking issue for this feature is: [#96469]
64076407
label: "naked_functions",
64086408
description: r##"# `naked_functions`
64096409
6410-
The tracking issue for this feature is: [#32408]
6410+
The tracking issue for this feature is: [#90957]
64116411
6412-
[#32408]: https://github.com/rust-lang/rust/issues/32408
6412+
[#90957]: https://github.com/rust-lang/rust/issues/90957
64136413
64146414
------------------------
64156415
"##,

tests/ui/feature-gates/feature-gate-naked_functions.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0658]: the `#[naked]` attribute is an experimental feature
44
LL | #[naked]
55
| ^^^^^^^^
66
|
7-
= note: see issue #32408 <https://github.com/rust-lang/rust/issues/32408> for more information
7+
= note: see issue #90957 <https://github.com/rust-lang/rust/issues/90957> for more information
88
= help: add `#![feature(naked_functions)]` to the crate attributes to enable
99

1010
error[E0658]: the `#[naked]` attribute is an experimental feature
@@ -13,7 +13,7 @@ error[E0658]: the `#[naked]` attribute is an experimental feature
1313
LL | #[naked]
1414
| ^^^^^^^^
1515
|
16-
= note: see issue #32408 <https://github.com/rust-lang/rust/issues/32408> for more information
16+
= note: see issue #90957 <https://github.com/rust-lang/rust/issues/90957> for more information
1717
= help: add `#![feature(naked_functions)]` to the crate attributes to enable
1818

1919
error: aborting due to 2 previous errors

0 commit comments

Comments
 (0)