Skip to content

Commit 933963e

Browse files
committed
Add tracking issue
1 parent 438826f commit 933963e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

compiler/rustc_feature/src/active.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ declare_features! (
534534
/// NOTE: A limited form of `union U { ... }` was accepted in 1.19.0.
535535
(active, untagged_unions, "1.13.0", Some(55149), None),
536536
/// Allows using the `#[used(linker)]` (or `#[used(compiler)]`) attribute.
537-
(active, used_with_arg, "1.60.0", Some(00000), None),
537+
(active, used_with_arg, "1.60.0", Some(93798), None),
538538
/// Allows `extern "wasm" fn`
539539
(active, wasm_abi, "1.53.0", Some(83788), None),
540540
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!

src/test/ui/feature-gates/feature-gate-used_with_arg.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ error[E0658]: `#[used(linker)]` is currently unstable
44
LL | #[used(linker)]
55
| ^^^^^^^^^^^^^^^
66
|
7+
= note: see issue #93798 <https://github.com/rust-lang/rust/issues/93798> for more information
78
= help: add `#![feature(used_with_arg)]` to the crate attributes to enable
89

910
error[E0658]: `#[used(compiler)]` is currently unstable
@@ -12,6 +13,7 @@ error[E0658]: `#[used(compiler)]` is currently unstable
1213
LL | #[used(compiler)]
1314
| ^^^^^^^^^^^^^^^^^
1415
|
16+
= note: see issue #93798 <https://github.com/rust-lang/rust/issues/93798> for more information
1517
= help: add `#![feature(used_with_arg)]` to the crate attributes to enable
1618

1719
error: aborting due to 2 previous errors

0 commit comments

Comments
 (0)