diff options
| author | bors <bors@rust-lang.org> | 2022-05-09 04:47:30 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-05-09 04:47:30 +0000 |
| commit | 8a2fe75d0e6e024aa434e5b9c40adb2567f362b8 (patch) | |
| tree | efdc8580272e7994c4de5ab04f16cc3087e73c64 /compiler/rustc_feature/src | |
| parent | db5b365fb0e7aa5f59d80236f520f5afc6e39ff4 (diff) | |
| parent | dac487ae2bf9f0d51b7462e9d311d67f46048643 (diff) | |
| download | rust-8a2fe75d0e6e024aa434e5b9c40adb2567f362b8.tar.gz rust-8a2fe75d0e6e024aa434e5b9c40adb2567f362b8.zip | |
Auto merge of #95960 - jhpratt:remove-rustc_deprecated, r=compiler-errors
Remove `#[rustc_deprecated]` This removes `#[rustc_deprecated]` and introduces diagnostics to help users to the right direction (that being `#[deprecated]`). All uses of `#[rustc_deprecated]` have been converted. CI is expected to fail initially; this requires #95958, which includes converting `stdarch`. I plan on following up in a short while (maybe a bootstrap cycle?) removing the diagnostics, as they're only intended to be short-term.
Diffstat (limited to 'compiler/rustc_feature/src')
| -rw-r--r-- | compiler/rustc_feature/src/builtin_attrs.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/compiler/rustc_feature/src/builtin_attrs.rs b/compiler/rustc_feature/src/builtin_attrs.rs index 33d2e82b24a..c5f42aa7af7 100644 --- a/compiler/rustc_feature/src/builtin_attrs.rs +++ b/compiler/rustc_feature/src/builtin_attrs.rs @@ -304,8 +304,7 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[ List: r#"/*opt*/ since = "version", /*opt*/ note = "reason""#, NameValueStr: "reason" ), - // This has special duplicate handling in E0550 to handle duplicates with rustc_deprecated - DuplicatesOk + ErrorFollowing ), // Crate properties: @@ -469,10 +468,10 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[ // ========================================================================== ungated!(feature, CrateLevel, template!(List: "name1, name2, ..."), DuplicatesOk), - // DuplicatesOk since it has its own validation + // FIXME(jhpratt) remove this eventually ungated!( rustc_deprecated, Normal, - template!(List: r#"since = "version", note = "...""#), DuplicatesOk // See E0550 + template!(List: r#"since = "version", note = "...""#), ErrorFollowing ), // DuplicatesOk since it has its own validation ungated!( |
